From 885c88e4d5b4baf6849f11df9ab2a763ef84a60c Mon Sep 17 00:00:00 2001 From: "jochen@chromium.org" Date: Fri, 23 Aug 2013 13:45:24 +0000 Subject: [PATCH] Fix mjsunit/debug-script after r16298 TBR=machenbach@chromium.org Review URL: https://codereview.chromium.org/23102015 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@16303 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- test/mjsunit/debug-script.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/mjsunit/debug-script.js b/test/mjsunit/debug-script.js index c61d7c5..1cbdb37 100644 --- a/test/mjsunit/debug-script.js +++ b/test/mjsunit/debug-script.js @@ -59,9 +59,9 @@ for (i = 0; i < scripts.length; i++) { } // This has to be updated if the number of native scripts change. -assertEquals(17, named_native_count); -// Only the 'gc' and (depending on flags) the 'i18n' extensions are loaded. -assertTrue(extension_count == 1 || extension_count == 2); +assertTrue(named_native_count == 16 || named_native_count == 17); +// Only the 'gc' extension is loaded. +assertEquals(1, extension_count); // This script and mjsunit.js has been loaded. If using d8, d8 loads // a normal script during startup too. assertTrue(normal_count == 2 || normal_count == 3); -- 2.7.4