From: mstarzinger@chromium.org Date: Fri, 23 Aug 2013 11:10:03 +0000 (+0000) Subject: Remove hacks for GC stress builders from cctests. X-Git-Tag: upstream/4.7.83~12865 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a8104959656c63d197527ce246271e7f87529f2a;p=platform%2Fupstream%2Fv8.git Remove hacks for GC stress builders from cctests. R=machenbach@chromium.org BUG=cctest Review URL: https://codereview.chromium.org/22861037 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@16291 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/test/cctest/test-api.cc b/test/cctest/test-api.cc index d20d27c..b1e82aa 100644 --- a/test/cctest/test-api.cc +++ b/test/cctest/test-api.cc @@ -12287,9 +12287,6 @@ void ApiTestFuzzer::TearDown() { // Lets not be needlessly self-referential. TEST(Threading1) { - // TODO(mstarzinger): Disabled in GC stress mode for now, we should find the - // correct timeout for this an re-enable this test again - if (i::FLAG_stress_compaction) return; ApiTestFuzzer::SetUp(ApiTestFuzzer::FIRST_PART); ApiTestFuzzer::RunAllTests(); ApiTestFuzzer::TearDown(); diff --git a/test/cctest/test-debug.cc b/test/cctest/test-debug.cc index 4382c10..484eb8e 100644 --- a/test/cctest/test-debug.cc +++ b/test/cctest/test-debug.cc @@ -6643,11 +6643,6 @@ TEST(ScriptCollectedEventContext) { script_collected_message_count = 0; v8::HandleScope scope(isolate); - // TODO(mstarzinger): This test relies explicit GCs being the only - // ones triggered. Remove this temporary workaround once we skip - // running cctests on the GC stress builder. - i::FLAG_gc_interval = -1; - v8::Persistent context; { v8::HandleScope scope(isolate); diff --git a/test/cctest/test-parsing.cc b/test/cctest/test-parsing.cc index 999fe4c..2b9adf8 100644 --- a/test/cctest/test-parsing.cc +++ b/test/cctest/test-parsing.cc @@ -1263,10 +1263,6 @@ TEST(ParserSync) { NULL }; - // TODO(mstarzinger): Disabled in GC stress mode for now, we should find the - // correct timeout for this and re-enable this test again. - if (i::FLAG_stress_compaction) return; - i::Isolate* isolate = i::Isolate::Current(); i::Factory* factory = isolate->factory();