Rebaseline webkit test with correct assumptions.

R=svenpanne@chromium.org

Review URL: https://codereview.chromium.org/20691002

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@15901 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent aded2016
......@@ -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
......
......@@ -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");
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment