[svn:parrot] r49167 - branches/gc_massacre/t/op
bacek at svn.parrot.org
bacek at svn.parrot.org
Mon Sep 20 10:55:54 UTC 2010
Author: bacek
Date: Mon Sep 20 10:55:53 2010
New Revision: 49167
URL: https://trac.parrot.org/parrot/changeset/49167
Log:
Invert test for GC.
I suspect that test is wrong. Even old GC MS shouldn't "collect" because it's purely string allocation related stuff and test doesn't allocate enough strings.
Modified:
branches/gc_massacre/t/op/gc-leaky-box.t
branches/gc_massacre/t/op/gc-leaky-call.t
Modified: branches/gc_massacre/t/op/gc-leaky-box.t
==============================================================================
--- branches/gc_massacre/t/op/gc-leaky-box.t Mon Sep 20 09:50:51 2010 (r49166)
+++ branches/gc_massacre/t/op/gc-leaky-box.t Mon Sep 20 10:55:53 2010 (r49167)
@@ -28,7 +28,7 @@
plan(3)
$S0 = interpinfo .INTERPINFO_GC_SYS_NAME
- if $S0 == "inf" goto dont_run_hanging_tests
+ if $S0 != "ms" goto dont_run_hanging_tests
test_gc_mark_sweep()
Modified: branches/gc_massacre/t/op/gc-leaky-call.t
==============================================================================
--- branches/gc_massacre/t/op/gc-leaky-call.t Mon Sep 20 09:50:51 2010 (r49166)
+++ branches/gc_massacre/t/op/gc-leaky-call.t Mon Sep 20 10:55:53 2010 (r49167)
@@ -25,7 +25,7 @@
plan(3)
$S0 = interpinfo .INTERPINFO_GC_SYS_NAME
- if $S0 == "inf" goto dont_run_hanging_tests
+ if $S0 != "ms" goto dont_run_hanging_tests
test_gc_mark_sweep()
More information about the parrot-commits
mailing list