summaryrefslogtreecommitdiff
path: root/test/ruby/test_process.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-01-31 04:02:17 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-01-31 04:02:17 +0000
commite97cc464605a5d6c9417bb449f27b36ceeb3e840 (patch)
tree49c3dcfa9cec9daa29e84006814aa2844f255d6b /test/ruby/test_process.rb
parentf1b7bf10471d01e3a073c8b9ff8aba3478e30543 (diff)
trick ruby-mode.el by heredocs
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62119 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_process.rb')
-rw-r--r--test/ruby/test_process.rb9
1 files changed, 6 insertions, 3 deletions
diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb
index 5eaf9162c7..57bfd78f7c 100644
--- a/test/ruby/test_process.rb
+++ b/test/ruby/test_process.rb
@@ -246,11 +246,14 @@ class TestProcess < Test::Unit::TestCase
assert_raise(ArgumentError) do
system(RUBY, '-e', 'exit', 'rlimit_bogus'.to_sym => 123)
end
- assert_separately([],<<-"end;") # [ruby-core:82033] [Bug #13744]
+ assert_separately([],"#{<<-"begin;"}\n#{<<~'end;'}")
+ BUG = "[ruby-core:82033] [Bug #13744]"
+ RUBY = "#{RUBY}"
+ begin;
assert(system("#{RUBY}", "-e",
"exit([3600,3600] == Process.getrlimit(:CPU))",
- 'rlimit_cpu'.to_sym => 3600))
- assert_raise(ArgumentError) do
+ 'rlimit_cpu'.to_sym => 3600), BUG)
+ assert_raise(ArgumentError, BUG) do
system("#{RUBY}", '-e', 'exit', :rlimit_bogus => 123)
end
end;