Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(209)

Unified Diff: test/webkit/fast/js/primitive-property-access-edge-cases-expected.txt

Issue 1221303019: Fix keyed access of primitive objects in the runtime. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/test262-es6/test262-es6.status ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/webkit/fast/js/primitive-property-access-edge-cases-expected.txt
diff --git a/test/webkit/fast/js/primitive-property-access-edge-cases-expected.txt b/test/webkit/fast/js/primitive-property-access-edge-cases-expected.txt
index df66f4eba421a0b459fdf2bbb77d0605e1b792e3..e86d26a83c6ac27595ce11f51161245c5e337bd5 100644
--- a/test/webkit/fast/js/primitive-property-access-edge-cases-expected.txt
+++ b/test/webkit/fast/js/primitive-property-access-edge-cases-expected.txt
@@ -53,15 +53,15 @@ PASS checkWriteStrict(true, Boolean) threw exception TypeError: Cannot assign to
PASS checkNumericGet(1, Number) is true
PASS checkNumericGet('hello', String) is true
PASS checkNumericGet(true, Boolean) is true
-FAIL checkNumericSet(1, Number) should be true. Was false.
-FAIL checkNumericSet('hello', String) should be true. Was false.
-FAIL checkNumericSet(true, Boolean) should be true. Was false.
+PASS checkNumericSet(1, Number) is true
+PASS checkNumericSet('hello', String) is true
+PASS checkNumericSet(true, Boolean) is true
PASS checkNumericGetStrict(1, Number) is true
PASS checkNumericGetStrict('hello', String) is true
PASS checkNumericGetStrict(true, Boolean) is true
-FAIL checkNumericSetStrict(1, Number) should be true. Was false.
-FAIL checkNumericSetStrict('hello', String) should be true. Was false.
-FAIL checkNumericSetStrict(true, Boolean) should be true. Was false.
+PASS checkNumericSetStrict(1, Number) is true
+PASS checkNumericSetStrict('hello', String) is true
+PASS checkNumericSetStrict(true, Boolean) is true
PASS checkNumericRead(1, Number) is true
PASS checkNumericRead('hello', String) is true
PASS checkNumericRead(true, Boolean) is true
@@ -71,9 +71,9 @@ PASS checkNumericWrite(true, Boolean) is true
PASS checkNumericReadStrict(1, Number) is true
PASS checkNumericReadStrict('hello', String) is true
PASS checkNumericReadStrict(true, Boolean) is true
-FAIL checkNumericWriteStrict(1, Number) should throw an exception. Was true.
-FAIL checkNumericWriteStrict('hello', String) should throw an exception. Was true.
-FAIL checkNumericWriteStrict(true, Boolean) should throw an exception. Was true.
+PASS checkNumericWriteStrict(1, Number) threw exception TypeError: Cannot assign to read only property '42' of 1.
+PASS checkNumericWriteStrict('hello', String) threw exception TypeError: Cannot assign to read only property '42' of hello.
+PASS checkNumericWriteStrict(true, Boolean) threw exception TypeError: Cannot assign to read only property '42' of true.
PASS didNotCrash is true
PASS successfullyParsed is true
« no previous file with comments | « test/test262-es6/test262-es6.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698