diff options
author | Michaƫl Zasso <targos@protonmail.com> | 2017-09-12 11:34:59 +0200 |
---|---|---|
committer | Anna Henningsen <anna@addaleax.net> | 2017-09-13 16:15:18 +0200 |
commit | d82e1075dbc2cec2d6598ade10c1f43805f690fd (patch) | |
tree | ccd242b9b491dfc341d1099fe11b0ef528839877 /deps/v8/tools/testrunner | |
parent | b4b7ac6ae811b2b5a3082468115dfb5a5246fe3f (diff) | |
download | node-new-d82e1075dbc2cec2d6598ade10c1f43805f690fd.tar.gz |
deps: update V8 to 6.1.534.36
PR-URL: https://github.com/nodejs/node/pull/14730
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Diffstat (limited to 'deps/v8/tools/testrunner')
-rw-r--r-- | deps/v8/tools/testrunner/local/statusfile.py | 10 | ||||
-rw-r--r-- | deps/v8/tools/testrunner/local/variants.py | 16 | ||||
-rw-r--r-- | deps/v8/tools/testrunner/testrunner.isolate | 7 |
3 files changed, 9 insertions, 24 deletions
diff --git a/deps/v8/tools/testrunner/local/statusfile.py b/deps/v8/tools/testrunner/local/statusfile.py index b03fcc121e..880837b8a7 100644 --- a/deps/v8/tools/testrunner/local/statusfile.py +++ b/deps/v8/tools/testrunner/local/statusfile.py @@ -49,7 +49,7 @@ FAIL_SLOPPY = "FAIL_SLOPPY" ALWAYS = "ALWAYS" KEYWORDS = {} -for key in [SKIP, FAIL, PASS, OKAY, TIMEOUT, CRASH, SLOW, FAIL_OK, +for key in [SKIP, FAIL, PASS, OKAY, CRASH, SLOW, FAIL_OK, FAST_VARIANTS, NO_VARIANTS, PASS_OR_FAIL, FAIL_SLOPPY, ALWAYS]: KEYWORDS[key] = key @@ -59,10 +59,10 @@ DEFS = {FAIL_OK: [FAIL, OKAY], # Support arches, modes to be written as keywords instead of strings. VARIABLES = {ALWAYS: True} for var in ["debug", "release", "big", "little", - "android_arm", "android_arm64", "android_ia32", "android_x87", - "android_x64", "arm", "arm64", "ia32", "mips", "mipsel", "mips64", - "mips64el", "x64", "x87", "ppc", "ppc64", "s390", "s390x", "macos", - "windows", "linux", "aix"]: + "android_arm", "android_arm64", "android_ia32", "android_x64", + "arm", "arm64", "ia32", "mips", "mipsel", "mips64", "mips64el", + "x64", "ppc", "ppc64", "s390", "s390x", "macos", "windows", + "linux", "aix"]: VARIABLES[var] = var # Allow using variants as keywords. diff --git a/deps/v8/tools/testrunner/local/variants.py b/deps/v8/tools/testrunner/local/variants.py index 0dba0d9579..30fc3e959e 100644 --- a/deps/v8/tools/testrunner/local/variants.py +++ b/deps/v8/tools/testrunner/local/variants.py @@ -6,11 +6,7 @@ ALL_VARIANT_FLAGS = { "default": [[]], "stress": [["--stress-opt", "--always-opt"]], - "turbofan": [["--turbo"]], - "turbofan_opt": [["--turbo", "--always-opt"]], - "noturbofan": [["--no-turbo"]], - "noturbofan_stress": [["--no-turbo", "--stress-opt", "--always-opt"]], - "fullcode": [["--noopt", "--no-turbo"]], + "fullcode": [["--noopt", "--stress-fullcodegen"]], # No optimization means disable all optimizations. OptimizeFunctionOnNextCall # would not force optimization too. It turns into a Nop. Please see # https://chromium-review.googlesource.com/c/452620/ for more discussion. @@ -23,10 +19,7 @@ ALL_VARIANT_FLAGS = { FAST_VARIANT_FLAGS = { "default": [[]], "stress": [["--stress-opt"]], - "turbofan": [["--turbo"]], - "noturbofan": [["--no-turbo"]], - "noturbofan_stress": [["--no-turbo", "--stress-opt"]], - "fullcode": [["--noopt", "--no-turbo"]], + "fullcode": [["--noopt", "--stress-fullcodegen"]], # No optimization means disable all optimizations. OptimizeFunctionOnNextCall # would not force optimization too. It turns into a Nop. Please see # https://chromium-review.googlesource.com/c/452620/ for more discussion. @@ -35,6 +28,5 @@ FAST_VARIANT_FLAGS = { "wasm_traps": [["--wasm_guard_pages", "--wasm_trap_handler", "--invoke-weak-callbacks"]], } -ALL_VARIANTS = set(["default", "stress", "turbofan", "turbofan_opt", - "noturbofan", "noturbofan_stress", "fullcode", - "nooptimization", "asm_wasm", "wasm_traps"]) +ALL_VARIANTS = set(["default", "stress", "fullcode", "nooptimization", + "asm_wasm", "wasm_traps"]) diff --git a/deps/v8/tools/testrunner/testrunner.isolate b/deps/v8/tools/testrunner/testrunner.isolate index 545d888871..e29f1df98d 100644 --- a/deps/v8/tools/testrunner/testrunner.isolate +++ b/deps/v8/tools/testrunner/testrunner.isolate @@ -27,12 +27,5 @@ ], }, }], - ['lsan==1', { - 'variables': { - 'files': [ - '../memory/lsan/suppressions.txt', - ], - }, - }], ], } |