diff options
author | Koichi Sasada <ko1@atdot.net> | 2019-11-07 18:22:08 +0900 |
---|---|---|
committer | Koichi Sasada <ko1@atdot.net> | 2019-11-08 09:09:29 +0900 |
commit | e2a45cb984ba75083a577b38ee9643800579a280 (patch) | |
tree | 9e8c56b3c7081b3ffdd8b65ca16c166ba186725e /tool | |
parent | 46acd0075d80c2f886498f089fde1e9d795d50c4 (diff) | |
download | ruby-e2a45cb984ba75083a577b38ee9643800579a280.tar.gz |
use builtin for TracePoint.
Define TracePoint in trace_point.rb and use __builtin_ syntax.
Diffstat (limited to 'tool')
-rw-r--r-- | tool/test/testunit/test_parallel.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tool/test/testunit/test_parallel.rb b/tool/test/testunit/test_parallel.rb index ac4c924eba..24e1f89bcb 100644 --- a/tool/test/testunit/test_parallel.rb +++ b/tool/test/testunit/test_parallel.rb @@ -110,9 +110,8 @@ module TestParallel end result = Marshal.load($1.chomp.unpack("m")[0]) - assert_equal(5, result[0]) - assert_equal(17, result[1]) + assert_equal(12, result[1]) assert_kind_of(Array,result[2]) assert_kind_of(Array,result[3]) assert_kind_of(Array,result[4]) |