From 2e2579da1b33dcbd71a0da657771f8e2931bd8ce Mon Sep 17 00:00:00 2001 From: "svenpanne@chromium.org" Date: Fri, 25 Oct 2013 08:57:50 +0000 Subject: [PATCH] Tune mjsunit/regexp-global. R=mstarzinger@chromium.org Review URL: https://codereview.chromium.org/42993004 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@17387 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- test/mjsunit/mjsunit.status | 4 ++++ test/mjsunit/regexp-global.js | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/test/mjsunit/mjsunit.status b/test/mjsunit/mjsunit.status index 0cdc674..8eb060e 100644 --- a/test/mjsunit/mjsunit.status +++ b/test/mjsunit/mjsunit.status @@ -61,6 +61,10 @@ 'regress/regress-crbug-217858': [PASS, ['mode == debug', SKIP]], ############################################################################## + # Only regexp stuff tested, no need for extensive Crankshaft tests. + 'regexp-global': [PASS, NO_VARIANTS], + + ############################################################################## # No need to waste time for this test. 'd8-performance-now': [PASS, NO_VARIANTS], diff --git a/test/mjsunit/regexp-global.js b/test/mjsunit/regexp-global.js index 093dba1..8501699 100644 --- a/test/mjsunit/regexp-global.js +++ b/test/mjsunit/regexp-global.js @@ -214,7 +214,7 @@ function test_match(result_expectation, // Test for different number of matches. -for (var m = 0; m < 200; m++) { +for (var m = 0; m < 33; m++) { // Create string that matches m times. var subject = ""; var test_1_expectation = ""; -- 2.7.4