Reviewers: Sven Panne,

Message:
PTAL

Description:
Rebaseline webkit test with correct assumptions.

Please review this at https://codereview.chromium.org/20691002/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files:
  M test/webkit/fast/js/stack-overflow-arrity-catch-expected.txt
  M test/webkit/fast/js/stack-overflow-arrity-catch.js


Index: test/webkit/fast/js/stack-overflow-arrity-catch-expected.txt
diff --git a/test/webkit/fast/js/stack-overflow-arrity-catch-expected.txt b/test/webkit/fast/js/stack-overflow-arrity-catch-expected.txt index 5fae72ecbc95adb758234225432a56a746a8c28d..80df97e671a7b0a1815352f940bf0e6205a744eb 100644
--- a/test/webkit/fast/js/stack-overflow-arrity-catch-expected.txt
+++ b/test/webkit/fast/js/stack-overflow-arrity-catch-expected.txt
@@ -27,8 +27,6 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE


 PASS gotRightCatch is true
-PASS gotWrongCatch1 is false
-FAIL gotWrongCatch2 should be false. Was true.
 PASS successfullyParsed is true

 TEST COMPLETE
Index: test/webkit/fast/js/stack-overflow-arrity-catch.js
diff --git a/test/webkit/fast/js/stack-overflow-arrity-catch.js b/test/webkit/fast/js/stack-overflow-arrity-catch.js index 4cbcbbfb6e2592158c2c36ef7de3dc2bac110d13..f36512adbb835d50431a84e4b7cff97b38953ff0 100644
--- a/test/webkit/fast/js/stack-overflow-arrity-catch.js
+++ b/test/webkit/fast/js/stack-overflow-arrity-catch.js
@@ -42,6 +42,8 @@ function test1()
         try {
             var dummy = new RegExp('a|b|c');
         } catch(err) {
+ // (1) It is dendent on the stack size if we arrive here, in (2) or
+            // both.
             gotWrongCatch1 = true;
         }

@@ -58,6 +60,8 @@ function test2()
     try {
         var dummy = new Date();
     } catch(err) {
+        // (2) It is dendent on the stack size if we arrive here, in (1) or
+        // both.
         gotWrongCatch2 = true;
     }

@@ -77,5 +81,3 @@ function test2()
 test1();

 shouldBeTrue("gotRightCatch");
-shouldBeFalse("gotWrongCatch1");
-shouldBeFalse("gotWrongCatch2");


--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to