IronRuby Rake 和 -X:PrivateBinding

发布于 2024-09-12 08:12:30 字数 682 浏览 3 评论 0原文

我正在尝试设置 Rake 脚本来运行所有 IronRuby rspec 测试。测试需要访问内部构造函数和方法。 IronRuby 通过 ir.exe 上的 -X:PrivateBinding 开关支持此功能。

因此,例如,如果我的测试名为 some_tests.rb,则以下命令有效:

ir -X:PrivateBinding -S spec some_tests.rb

但是,当我尝试以这种方式运行 rake 时,它​​会崩溃。

要存储库,请按照以下步骤操作:

编写如下所示的 rakefile:

task :test do
  puts "TEST PASSED"
end

运行此命令将成功:

ir -S rake test

运行此命令将失败:

ir -X:PrivateBinding -S rake test

并出现以下错误: C:/IronRuby 1.1/lib/ironruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:1275:语法错误,意外的“.”

我正在 .NET 4.0.30319.1 上运行 IronRuby 1.1.0.0,使用 rake 0.8.7。

I'm trying to setup a Rake script to run all my IronRuby rspec tests. The tests need to have access to internal constructors and methods. IronRuby supports this with the -X:PrivateBinding switch on ir.exe.

So, for example, if my test is called some_tests.rb, the following command works:

ir -X:PrivateBinding -S spec some_tests.rb

However, when I try to run rake that way it bombs out.

To repo, follow these steps:

Write a rakefile like the following:

task :test do
  puts "TEST PASSED"
end

Running this command will succeed:

ir -S rake test

Running this command will fail:

ir -X:PrivateBinding -S rake test

with the following error:
C:/IronRuby 1.1/lib/ironruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:1275: syntax error, unexpected `.'

I'm running IronRuby 1.1.0.0 on .NET 4.0.30319.1 with rake 0.8.7.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文