From 1be45275c6036ad7431ca0313e7fb13c2fe29549 Mon Sep 17 00:00:00 2001 From: "yangguo@chromium.org" Date: Wed, 19 Jun 2013 09:32:05 +0000 Subject: [PATCH] Fix test for bots that force --parallel-recompilation as shell flag. R=jkummerow@chromium.org BUG= Review URL: https://codereview.chromium.org/16914006 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@15202 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- test/mjsunit/assert-opt-and-deopt.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/mjsunit/assert-opt-and-deopt.js b/test/mjsunit/assert-opt-and-deopt.js index c79d92349e..afba963fc7 100644 --- a/test/mjsunit/assert-opt-and-deopt.js +++ b/test/mjsunit/assert-opt-and-deopt.js @@ -27,6 +27,11 @@ // Flags: --allow-natives-syntax --noparallel-recompilation +if (%IsParallelRecompilationSupported()) { + print("Parallel recompilation is turned on after all. Skipping this test."); + quit(); +} + /** * This class shows how to use %GetOptimizationCount() and * %GetOptimizationStatus() to infer information about opts and deopts.