From ebd13c333c2e612756539fd8c264ae3799cd1b97 Mon Sep 17 00:00:00 2001 From: Michael Dawson Date: Mon, 9 May 2016 18:44:42 -0400 Subject: [PATCH] deps: limit regress/regress-crbug-514081 v8 test regress/regress-crbug-514081 allocates a 2G block of memory and if there are multiple variants running at the same time this can lead to crashes, OOM kills or the OS failing to allocate memory. This patch limits us to running a single variant of the test Fixes: https://github.com/nodejs/node/issues/6340 Refs: https://github.com/nodejs/node/pull/6678 PR-URL: https://github.com/nodejs/node/pull/14004 Reviewed-By: Anna Henningsen Reviewed-By: Anna Henningsen Reviewed-By: Franziska Hinkelmann Reviewed-By: James M Snell Reviewed-By: Matteo Collina Reviewed-By: Colin Ihrig --- deps/v8/test/mjsunit/mjsunit.status | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/deps/v8/test/mjsunit/mjsunit.status b/deps/v8/test/mjsunit/mjsunit.status index bb1630aad6..6c6911999b 100644 --- a/deps/v8/test/mjsunit/mjsunit.status +++ b/deps/v8/test/mjsunit/mjsunit.status @@ -690,4 +690,13 @@ 'whitespaces': [SKIP], }], # variant == wasm_traps +############################################################################## +# This test allocates a 2G block of memory and if there are multiple +# varients this leads kills by the OOM killer, crashes or messages +# indicating the OS cannot allocate memory, exclude for Node.js runs +# re-evalute when we move up to v8 5.1 +[ALWAYS, { +'regress/regress-crbug-514081': [PASS, NO_VARIANTS], +}], # ALWAYS + ]