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
This commit is contained in:
mstarzinger@chromium.org 2013-08-23 11:10:03 +00:00
parent 88e74d525a
commit a810495965
3 changed files with 0 additions and 12 deletions

View File

@ -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();

View File

@ -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<v8::Context> context;
{
v8::HandleScope scope(isolate);

View File

@ -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();