rev: 6b1d2de6cc
test-all : 21151 tests, 5668067 assertions, 0 failures, 0 errors, 106 skips
test-spec: 3769 files, 30828 examples, 205538 expectations, 0 failures, 0 errors, 0 tagged
exit statuses:
"make update-unicode -j8" exit with 0.
"make update-download -j8" exit with 0.
"make update-rubyspec -j8" exit with 0.
"make update-src -j8" exit with 0.
"make after-update -j8" exit with 0.
"make miniruby -j8" exit with 0.
"make ruby -j8" exit with 0.
"make all -j8" exit with 0.
"make install -j8" exit with 0.
"make yes-btest TESTS='-j8'" exit with 512.
"make yes-test-basic TESTS='-j8'" exit with 0.
"make yes-test-all TESTS='-j8'" exit with 0.
"make yes-test-rubyspec TESTS='-j8'" exit with 0.
Logfile: /home/ko1/ruby/logs/brlog.trunk-test.20201211-074223
#<BuildRuby:0x00005597e0413958
@BUILD_DIR="/tmp/ruby/v3/build",
@INSTALL_DIR="/tmp/ruby/v3/install",
@REPOSITORY="https://github.com/ruby/ruby.git",
@REPOSITORY_TYPE=:git,
@SRC_DIR="/tmp/ruby/v3/src",
@TARGET_BUILD_DIR="/tmp/ruby/v3/build/trunk-test",
@TARGET_INSTALL_DIR="/tmp/ruby/v3/install/trunk-test",
@TARGET_NAME="trunk-test",
@TARGET_SRC_DIR="/tmp/ruby/v3/src/trunk-test",
@build_opts="-j8",
@configure_opts=["--enable-shared"],
@gist=false,
@git_branch=nil,
@git_worktree=nil,
@incremental=true,
@logfile="/home/ko1/ruby/logs/brlog.trunk-test.20201211-074223",
@make="make",
@quiet=false,
@ruby_env=[["RUBY_DEBUG", "ci"]],
@steps=
["checkout",
"autoconf",
"configure",
"build_up",
"build_miniruby",
"build_ruby",
"build_all",
"build_install",
"test_btest",
"test_basic",
"test_all",
"test_rubyspec"],
@svn_revision=nil,
@test_opts="TESTS='-j8'",
@timeout=10800>
user system total real
checkout 0.000006 0.000000 0.000006 ( 0.000006)
autoconf 0.000011 0.000001 0.000012 ( 0.000011)
configure 0.000011 0.000000 0.000011 ( 0.000012)
build_up From https://github.com/ruby/ruby
97868f1..6b1d2de master -> origin/master
0.001131 0.004289 19.858951 ( 9.626621)
build_miniruby 0.000000 0.000679 0.057245 ( 0.056229)
build_ruby 0.000000 0.001440 1.827208 ( 1.742164)
build_all 0.000886 0.005156 4.558885 ( 1.321790)
build_install 0.005501 0.004502 3.620281 ( 1.251875)
test_btest test_attr.rb ..
test_autoload.rb ........
test_block.rb ..........................................................
test_class.rb ................................................
test_env.rb ..
test_eval.rb .....................................
test_exception.rb ..................................
test_fiber.rb .....
test_finalizer.rb .
test_flip.rb .
test_flow.rb ..............................................................
test_fork.rb ....
test_gc.rb ..
test_insns.rb ...............................................................................................................................................................................................................................................................................................................................................................................................
test_io.rb .........
test_jump.rb .............................
test_literal.rb ............................................................................................................................................................
test_literal_suffix.rb ................................................
test_load.rb ..
test_marshal.rb .
test_massign.rb ..................................
test_method.rb ...............................................................................................................................................................................................................................
test_objectspace.rb ......
test_proc.rb .....................................
test_ractor.rb ...............Fstderr output is not empty
<internal:ractor>:37: [BUG] Segmentation fault at 0x0000000000000001
ruby 3.0.0dev (2020-12-10T22:40:29Z master 6b1d2de6cc) [x86_64-linux]
-- Control frame information -----------------------------------------------
c:0014 p:---- s:0060 e:000059 CFUNC :path
me:
called_id: path, type: cfunc
owner class: 0x000055f1294bf328 [3LM ] T_CLASS Thread::Backtrace::Location
self: 0x00007f71bc017fb8 [0 U] frame_info (Thread::Backtrace::Location)frame_info
c:0013 p:0038 s:0056 e:000055 METHOD <internal:ractor>:37
me:
called_id: new, type: iseq
owner class: 0x000055f1294c6128 [3LM ] T_CLASS (annon)
self: 0x000055f1294c6150 [3LM ] T_CLASS Ractor
lvars:
args: 0x000055f12950d780 [0LM ] T_ARRAY (Array)[E ] len: 1 (embed)
name: T_NIL
(null): T_FIXNUM 0
block: 0x000055f1294d4368 [0LM ] proc (Proc) block (2 levels) in test@bootstraptest.tmp.rb:4
b: 0x000055f1294d4368 [0LM ] proc (Proc) block (2 levels) in test@bootstraptest.tmp.rb:4
loc: 0x00007f71bc017fb8 [0 U] frame_info (Thread::Backtrace::Location)frame_info
.......................................................
test_string.rb .
test_struct.rb .
test_syntax.rb ............................................................................................................................................................
test_thread.rb .................................................
Fiber count: 10000 (skipping)
#1208 test_ractor.rb:137:in `<top (required)>':
def test n
rs = (1..n).map do |i|
Ractor.new(i) do |i|
"r#{i}"
end
end
as = []
all_rs = rs.dup
n.times{
r, obj = Ractor.select(*rs)
as << [r, obj]
rs.delete(r)
}
if as.map{|r, o| r.object_id}.sort == all_rs.map{|r| r.object_id}.sort &&
as.map{|r, o| o}.sort == (1..n).map{|i| "r#{i}"}.sort
'ok'
else
'ng'
end
end
30.times.map{|i|
test i
}
#=> "" (expected "[\"ok\", \"ok\", \"ok\", \"ok\", \"ok\", \"ok\", \"ok\", \"ok\", \"ok\", \"ok\", \"ok\", \"ok\", \"ok\", \"ok\", \"ok\", \"ok\", \"ok\", \"ok\", \"ok\", \"ok\", \"ok\", \"ok\", \"ok\", \"ok\", \"ok\", \"ok\", \"ok\", \"ok\", \"ok\", \"ok\"]")
FAIL 1/1470 tests failed
make: *** [yes-btest] Error 1
0.000756 0.000270 15.993945 ( 16.691375)
test_basic 0.005632 0.000504 0.305387 ( 0.393934)
test_all Skipping Gem::PackageTask tests. rake not found.
0.008092 0.004099 447.024930 ( 74.072613)
test_rubyspec $ /tmp/ruby/v3/build/trunk-test/miniruby -I/tmp/ruby/v3/src/trunk-test/lib /tmp/ruby/v3/src/trunk-test/tool/runruby.rb --archdir=/tmp/ruby/v3/build/trunk-test --extout=.ext -- -I/tmp/ruby/v3/src/trunk-test/tool/lib /tmp/ruby/v3/src/trunk-test/spec/mspec/bin/mspec-run -B /tmp/ruby/v3/src/trunk-test/spec/default.mspec
0.052849 0.049379 55.793512 ( 65.283777)
$$$[end] "make yes-btest TESTS='-j8'" exit with 512.
/home/ko1/ruby/logs/brlog.trunk-test.20201211-074223
total: 170.44 sec