From: ricow@chromium.org Date: Wed, 6 Jul 2011 08:20:30 +0000 (+0000) Subject: In preperation of using d8 for running tests: Don't run d8-os when running with ... X-Git-Tag: upstream/4.7.83~18970 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1fff78036e47097670e8baeb4848cd754f8a220c;p=platform%2Fupstream%2Fv8.git In preperation of using d8 for running tests: Don't run d8-os when running with --isolates. When used with d8 this can potentially interfer with the writing, reading and deletion of files is the isolates flags makes the same test run concurrently. Review URL: http://codereview.chromium.org/7308006 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@8540 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/test/mjsunit/mjsunit.status b/test/mjsunit/mjsunit.status index 8ffcafc..b7b0c77 100644 --- a/test/mjsunit/mjsunit.status +++ b/test/mjsunit/mjsunit.status @@ -142,3 +142,8 @@ regress/regress-create-exception: SKIP regress/regress-3218915: SKIP regress/regress-3247124: SKIP + +[ $isolates ] +# d8-os writes temporary files that might interfer with each other when running +# in multible threads. Skip this if running with isolates testing. +d8-os: SKIP diff --git a/tools/test.py b/tools/test.py index d09f275..ec21ffe 100755 --- a/tools/test.py +++ b/tools/test.py @@ -1442,7 +1442,8 @@ def Main(): 'system': utils.GuessOS(), 'arch': options.arch, 'simulator': options.simulator, - 'crankshaft': options.crankshaft + 'crankshaft': options.crankshaft, + 'isolates': options.isolates } test_list = root.ListTests([], path, context, mode, []) unclassified_tests += test_list