Revision: 15901
Author:   [email protected]
Date:     Fri Jul 26 04:22:25 2013
Log:      Rebaseline webkit test with correct assumptions.

[email protected]

Review URL: https://codereview.chromium.org/20691002
http://code.google.com/p/v8/source/detail?r=15901

Modified:
/branches/bleeding_edge/test/webkit/fast/js/stack-overflow-arrity-catch-expected.txt
 /branches/bleeding_edge/test/webkit/fast/js/stack-overflow-arrity-catch.js

=======================================
--- /branches/bleeding_edge/test/webkit/fast/js/stack-overflow-arrity-catch-expected.txt Thu Jul 25 12:54:24 2013 +++ /branches/bleeding_edge/test/webkit/fast/js/stack-overflow-arrity-catch-expected.txt Fri Jul 26 04:22:25 2013
@@ -27,8 +27,6 @@


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

 TEST COMPLETE
=======================================
--- /branches/bleeding_edge/test/webkit/fast/js/stack-overflow-arrity-catch.js Thu Jul 25 12:54:24 2013 +++ /branches/bleeding_edge/test/webkit/fast/js/stack-overflow-arrity-catch.js Fri Jul 26 04:22:25 2013
@@ -42,6 +42,8 @@
         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 @@
     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 @@
 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