diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2013-07-02 17:11:31 +0200 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2013-07-06 16:53:06 +0200 |
commit | 704fd8f3745527fc080f96e54e5ec1857c505399 (patch) | |
tree | bff68e8a731f3618d3e8f1708aa9de194bc1f612 /deps/v8/test/mjsunit/assert-opt-and-deopt.js | |
parent | eec43351c44c0bec31a83e1a28be15e30722936a (diff) | |
download | node-704fd8f3745527fc080f96e54e5ec1857c505399.tar.gz |
v8: upgrade to v3.20.2
Diffstat (limited to 'deps/v8/test/mjsunit/assert-opt-and-deopt.js')
-rw-r--r-- | deps/v8/test/mjsunit/assert-opt-and-deopt.js | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/deps/v8/test/mjsunit/assert-opt-and-deopt.js b/deps/v8/test/mjsunit/assert-opt-and-deopt.js index fa38ae3e5..afba963fc 100644 --- a/deps/v8/test/mjsunit/assert-opt-and-deopt.js +++ b/deps/v8/test/mjsunit/assert-opt-and-deopt.js @@ -25,8 +25,12 @@ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// Flags: --allow-natives-syntax -%SetFlags("--noparallel-recompilation"); +// 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 |