From: mstarzinger@chromium.org Date: Mon, 22 Apr 2013 14:38:07 +0000 (+0000) Subject: Disable ParserSync test in GC stress mode for now. X-Git-Tag: upstream/4.7.83~14488 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=81b762cc335446ae6af11ef5405528227fecf132;p=platform%2Fupstream%2Fv8.git Disable ParserSync test in GC stress mode for now. R=jkummerow@chromium.org TEST=cctest/test-parsing/ParserSync Review URL: https://codereview.chromium.org/14075017 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@14376 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/test/cctest/test-parsing.cc b/test/cctest/test-parsing.cc index c7331bd..3ea1fb1 100644 --- a/test/cctest/test-parsing.cc +++ b/test/cctest/test-parsing.cc @@ -1238,6 +1238,10 @@ 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; + v8::HandleScope handles(v8::Isolate::GetCurrent()); v8::Persistent context = v8::Context::New(); v8::Context::Scope context_scope(context);