From 38a13ea26274ef5e80ae6c56afc40d9786472001 Mon Sep 17 00:00:00 2001 From: Michael Achenbach Date: Fri, 26 Oct 2018 10:23:24 +0200 Subject: [PATCH] [test] Skip slow test This skips big-object-literal on bots with dchecks (setting DEBUG) and with stress mode in general. NOTRY=true Bug: v8:8328 Change-Id: I53480d1ee942d2c83e46c8804bd8920a5e36cad2 Reviewed-on: https://chromium-review.googlesource.com/c/1301495 Reviewed-by: Yang Guo Commit-Queue: Michael Achenbach Cr-Commit-Position: refs/heads/master@{#57017} --- test/mjsunit/mjsunit.status | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/test/mjsunit/mjsunit.status b/test/mjsunit/mjsunit.status index 955622c05e..51b0e1cf28 100644 --- a/test/mjsunit/mjsunit.status +++ b/test/mjsunit/mjsunit.status @@ -210,10 +210,10 @@ # TODO(vogelheim): big-object-literal exceeds the stack in debug builds, # which makes the test useless. - 'big-object-literal': [PASS, ['mode == debug', SKIP]], + 'big-object-literal': [PASS, ['mode == debug or dcheck_always_on', SKIP]], # Runs out of stack space in debug builds. - 'big-array-literal': [PASS, ['mode == debug', SKIP]], + 'big-array-literal': [PASS, ['mode == debug or dcheck_always_on', SKIP]], # BUG(v8:6306). 'wasm/huge-memory': [SKIP], @@ -793,9 +793,10 @@ ############################################################################## ['variant == stress', { - 'es6/array-iterator-turbo': [SKIP], - + # Slow tests. 'array-natives-elements': [SKIP], + 'big-object-literal': [SKIP], + 'es6/array-iterator-turbo': [SKIP], 'ignition/regress-599001-verifyheap': [SKIP], 'unicode-test': [SKIP], @@ -814,9 +815,6 @@ # Too memory hungry on Odroid devices. 'regress/regress-678917': [PASS, ['arch == arm and not simulator_run', SKIP]], - - # Too slow for verify-csa builds. - 'big-object-literal': [PASS, ['verify_csa == True', SKIP]], }], # variant == stress ##############################################################################