File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -63,8 +63,16 @@ if [[ $CHOOSE_TESTS_JL_CONTENT =~ $REGEX_PATTERN ]]; then
6363 continue
6464 fi
6565
66+ if [[ $test =~ " rounding" ]]; then
67+ # Run rounding test with single thread and Julia's
68+ # heap resizing (it OOMs with a fixed heap)
69+ echo " -> Run"
70+ ci_run_jl_test $test 1 $moving_feature
71+ continue
72+ fi
73+
6674 echo " -> Run"
67- ci_run_jl_test $test 1 $moving_feature
75+ ci_run_jl_test $test 2 $moving_feature
6876 fi
6977 done
7078else
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ impl Scanning<JuliaVM> for VMScanning {
132132 CONSERVATIVE_ROOTS . lock ( ) . unwrap ( ) . insert ( obj) ;
133133 }
134134
135- if let Some ( jmpbuf) = ( * eh) . eh_ctx . get ( 0 ) {
135+ if let Some ( jmpbuf) = ( * eh) . eh_ctx . first ( ) {
136136 for buff in jmpbuf. __jmpbuf {
137137 if let Some ( obj) =
138138 is_potential_mmtk_object ( Address :: from_usize ( buff as usize ) )
You can’t perform that action at this time.
0 commit comments