From 3db4d32878188b3714d4452a77dad7c1ef6d12bd Mon Sep 17 00:00:00 2001 From: "rossberg@chromium.org" Date: Mon, 17 Mar 2014 12:00:40 +0000 Subject: [PATCH] Fix WebKit and Mozilla test expectations R=mstarzinger@chromium.org BUG= Review URL: https://codereview.chromium.org/201793003 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@19985 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- test/mozilla/mozilla.status | 6 ++++++ .../fast/js/kde/exception_propagation-expected.txt | 1 - test/webkit/fast/js/kde/exception_propagation.js | 20 -------------------- 3 files changed, 6 insertions(+), 21 deletions(-) diff --git a/test/mozilla/mozilla.status b/test/mozilla/mozilla.status index 197e651..59e0556 100644 --- a/test/mozilla/mozilla.status +++ b/test/mozilla/mozilla.status @@ -77,6 +77,12 @@ # TODO(2018): Temporarily allow timeout in debug mode. 'js1_5/GC/regress-203278-2': [PASS, ['mode == debug', TIMEOUT, NO_VARIANTS, FAIL]], + # These tests use invalid LHS expressions in assignments. + 'js1_5/Regress/regress-319391': [SKIP], + 'js1_5/Regress/regress-350253': [SKIP], + 'js1_5/Regress/regress-462292': [SKIP], + 'js1_5/decompilation/regress-443071-01': [SKIP], + ##################### SLOW TESTS ##################### # This takes a long time to run (~100 seconds). It should only be run diff --git a/test/webkit/fast/js/kde/exception_propagation-expected.txt b/test/webkit/fast/js/kde/exception_propagation-expected.txt index 433c66a..ab717b8 100644 --- a/test/webkit/fast/js/kde/exception_propagation-expected.txt +++ b/test/webkit/fast/js/kde/exception_propagation-expected.txt @@ -88,7 +88,6 @@ PASS for_val_part3_throw2 is 4 PASS for_val_part1_throwbody is 1 PASS for_val_part2_throwbody is 1 PASS for_val_part3_throwbody is 4 -PASS forin_count is 4 PASS set_inside_with_throw is 4 PASS set_inside_with_cantconverttoobject is 4 PASS successfullyParsed is true diff --git a/test/webkit/fast/js/kde/exception_propagation.js b/test/webkit/fast/js/kde/exception_propagation.js index 9d6e753..80ece4b 100644 --- a/test/webkit/fast/js/kde/exception_propagation.js +++ b/test/webkit/fast/js/kde/exception_propagation.js @@ -402,26 +402,6 @@ catch (e) { shouldBe("for_val_part3_throwbody","4"); // --------------------------------- -var forin_test_obj = new Object(); -forin_test_obj.a = 1; -forin_test_obj.b = 2; -forin_test_obj.c = 3; -var forin_count = 4; -function forin_lexpr() { -// if (forincount == 1); -// throwex(); - return new Object(); -} -try { - for (throwex() in forin_test_obj) { - forin_count++; - } -} -catch (e) { -} -shouldBe("forin_count","4"); - -// --------------------------------- var set_inside_with_throw = 4; try { with (throwex()) { -- 2.7.4