Changeset 245201 in webkit
- Timestamp:
- May 10, 2019, 4:42:53 PM (7 years ago)
- Location:
- trunk/JSTests
- Files:
-
- 13 edited
-
ChangeLog (modified) (1 diff)
-
test262/config.yaml (modified) (1 diff)
-
test262/expectations.yaml (modified) (9 diffs)
-
test262/test/intl402/DateTimeFormat/prototype/formatRange/date-is-infinity-throws.js (modified) (1 diff)
-
test262/test/intl402/DateTimeFormat/prototype/formatRange/date-is-nan-throws.js (modified) (1 diff)
-
test262/test/intl402/DateTimeFormat/prototype/formatRange/date-undefined-throws.js (modified) (1 diff)
-
test262/test/intl402/DateTimeFormat/prototype/formatRange/date-x-greater-than-y-throws.js (modified) (1 diff)
-
test262/test/intl402/DateTimeFormat/prototype/formatRange/this-is-not-object-throws.js (modified) (1 diff)
-
test262/test/intl402/DateTimeFormat/prototype/formatRangeToParts/date-is-infinity-throws.js (modified) (1 diff)
-
test262/test/intl402/DateTimeFormat/prototype/formatRangeToParts/date-is-nan-throws.js (modified) (1 diff)
-
test262/test/intl402/DateTimeFormat/prototype/formatRangeToParts/date-undefined-throws.js (modified) (1 diff)
-
test262/test/intl402/DateTimeFormat/prototype/formatRangeToParts/date-x-greater-than-y-throws.js (modified) (1 diff)
-
test262/test/intl402/DateTimeFormat/prototype/formatRangeToParts/this-is-not-object-throws.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/JSTests/ChangeLog
r245188 r245201 1 2019-05-10 Ross Kirsling <ross.kirsling@sony.com> 2 3 [Test262] Unreviewed expectations update following r245188. 4 5 * test262/config.yaml: 6 * test262/expectations.yaml: 7 8 * test262/test/intl402/DateTimeFormat/prototype/formatRange/date-is-infinity-throws.js: 9 * test262/test/intl402/DateTimeFormat/prototype/formatRange/date-is-nan-throws.js: 10 * test262/test/intl402/DateTimeFormat/prototype/formatRange/date-undefined-throws.js: 11 * test262/test/intl402/DateTimeFormat/prototype/formatRange/date-x-greater-than-y-throws.js: 12 * test262/test/intl402/DateTimeFormat/prototype/formatRange/this-is-not-object-throws.js: 13 * test262/test/intl402/DateTimeFormat/prototype/formatRangeToParts/date-is-infinity-throws.js: 14 * test262/test/intl402/DateTimeFormat/prototype/formatRangeToParts/date-is-nan-throws.js: 15 * test262/test/intl402/DateTimeFormat/prototype/formatRangeToParts/date-undefined-throws.js: 16 * test262/test/intl402/DateTimeFormat/prototype/formatRangeToParts/date-x-greater-than-y-throws.js: 17 * test262/test/intl402/DateTimeFormat/prototype/formatRangeToParts/this-is-not-object-throws.js: 18 These files have invalid YAML comments. Will also submit corrections back to Test262. 19 1 20 2019-05-10 Keith Miller <keith_miller@apple.com> 2 21 -
trunk/JSTests/test262/config.yaml
r240754 r245201 25 25 - class-static-fields-private 26 26 - class-static-methods-private 27 - Intl.DateTimeFormat-datetimestyle 28 - Intl.DateTimeFormat-formatRange 27 29 - Intl.ListFormat 28 30 - Intl.Locale 31 - Intl.NumberFormat-unified 29 32 - Intl.RelativeTimeFormat 30 33 - Intl.Segmenter 34 # https://bugs.webkit.org/show_bug.cgi?id=196332 35 - Promise.allSettled 31 36 files: 32 37 - test/built-ins/Array/prototype/reverse/length-exceeding-integer-limit-with-object.js -
trunk/JSTests/test262/expectations.yaml
r245001 r245201 1 1 --- 2 2 test/annexB/built-ins/Function/createdynfn-html-close-comment-params.js: 3 default: "SyntaxError: Unexpected token ' --'. Expected a parameter pattern or a ')' in parameter list."4 strict mode: "SyntaxError: Unexpected token ' --'. Expected a parameter pattern or a ')' in parameter list."3 default: "SyntaxError: Unexpected token '}'. Expected a parameter pattern or a ')' in parameter list." 4 strict mode: "SyntaxError: Unexpected token '}'. Expected a parameter pattern or a ')' in parameter list." 5 5 test/annexB/built-ins/Function/createdynfn-html-open-comment-params.js: 6 6 default: "SyntaxError: Unexpected token '}'. Expected a parameter pattern or a ')' in parameter list." 7 7 strict mode: "SyntaxError: Unexpected token '}'. Expected a parameter pattern or a ')' in parameter list." 8 test/annexB/built-ins/Function/createdynfn-no-line-terminator-html-close-comment-body.js: 9 default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' 10 strict mode: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' 8 11 test/annexB/built-ins/RegExp/prototype/Symbol.split/Symbol.match-getter-recompiles-source.js: 9 12 default: 'Test262Error: Expected SameValue(«», «a») to be true' … … 865 868 default: 'TypeError: Type error' 866 869 strict mode: 'TypeError: Type error' 870 test/built-ins/Date/prototype/toDateString/negative-year.js: 871 default: 'Test262Error: Date.prototype.toDateString serializes year -1 to "-0001" Expected SameValue(«-001», «-0001») to be true' 872 strict mode: 'Test262Error: Date.prototype.toDateString serializes year -1 to "-0001" Expected SameValue(«-001», «-0001») to be true' 873 test/built-ins/Date/prototype/toString/negative-year.js: 874 default: 'Test262Error: Date.prototype.toString serializes year -1 to "-0001" Expected SameValue(«-001», «-0001») to be true' 875 strict mode: 'Test262Error: Date.prototype.toString serializes year -1 to "-0001" Expected SameValue(«-001», «-0001») to be true' 876 test/built-ins/Date/prototype/toUTCString/negative-year.js: 877 default: 'Test262Error: Date.prototype.toUTCString serializes year -1 to "-0001" Expected SameValue(«-001», «-0001») to be true' 878 strict mode: 'Test262Error: Date.prototype.toUTCString serializes year -1 to "-0001" Expected SameValue(«-001», «-0001») to be true' 867 879 test/built-ins/Error/proto-from-ctor-realm.js: 868 880 default: 'Test262Error: Expected SameValue(«Error», «Error») to be true' … … 1069 1081 default: 'Test262Error: function proxy Expected SameValue(«[object Object]», «[object Function]») to be true' 1070 1082 strict mode: 'Test262Error: function proxy Expected SameValue(«[object Object]», «[object Function]») to be true' 1083 test/built-ins/Promise/all/invoke-resolve-get-error-close.js: 1084 default: 'Test262Error: Expected SameValue(«1», «0») to be true' 1085 strict mode: 'Test262Error: Expected SameValue(«1», «0») to be true' 1086 test/built-ins/Promise/all/invoke-resolve-get-once-multiple-calls.js: 1087 default: 'Test262Error: Got `resolve` only once for each iterated value Expected SameValue(«4», «1») to be true' 1088 strict mode: 'Test262Error: Got `resolve` only once for each iterated value Expected SameValue(«4», «1») to be true' 1071 1089 test/built-ins/Promise/all/resolve-element-function-nonconstructor.js: 1072 1090 default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' … … 1075 1093 default: 'Test262Error: Expected SameValue(«[object Promise]», «[object Promise]») to be true' 1076 1094 strict mode: 'Test262Error: Expected SameValue(«[object Promise]», «[object Promise]») to be true' 1095 test/built-ins/Promise/race/invoke-resolve-get-error-close.js: 1096 default: 'Test262Error: Expected SameValue(«1», «0») to be true' 1097 strict mode: 'Test262Error: Expected SameValue(«1», «0») to be true' 1098 test/built-ins/Promise/race/invoke-resolve-get-once-multiple-calls.js: 1099 default: 'Test262Error: Got `resolve` only once for each iterated value Expected SameValue(«4», «1») to be true' 1100 strict mode: 'Test262Error: Got `resolve` only once for each iterated value Expected SameValue(«4», «1») to be true' 1101 test/built-ins/Promise/race/invoke-resolve-get-once-no-calls.js: 1102 default: 'Test262Error: Got `resolve` only once for each iterated value Expected SameValue(«0», «1») to be true' 1103 strict mode: 'Test262Error: Got `resolve` only once for each iterated value Expected SameValue(«0», «1») to be true' 1077 1104 test/built-ins/Promise/reject-function-nonconstructor.js: 1078 1105 default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' … … 1099 1126 default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' 1100 1127 strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' 1128 test/built-ins/Proxy/defineProperty/targetdesc-not-configurable-writable-desc-not-writable.js: 1129 default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' 1130 strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' 1131 test/built-ins/Proxy/deleteProperty/targetdesc-is-configurable-target-is-not-extensible.js: 1132 default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' 1133 strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' 1134 test/built-ins/Proxy/getOwnPropertyDescriptor/resultdesc-is-not-configurable-not-writable-targetdesc-is-writable.js: 1135 default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' 1136 strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' 1101 1137 test/built-ins/RegExp/named-groups/groups-object-subclass-sans.js: 1102 1138 default: 'Test262Error: Expected SameValue(«b», «$<a>») to be true' … … 1129 1165 default: 'Test262: This statement should not be evaluated.' 1130 1166 strict mode: 'Test262: This statement should not be evaluated.' 1167 test/built-ins/RegExp/property-escapes/generated/Alphabetic.js: 1168 default: 'Test262Error: `\p{Alphabetic}` should match U+001CFA (`ᳺ`)' 1169 strict mode: 'Test262Error: `\p{Alphabetic}` should match U+001CFA (`ᳺ`)' 1170 test/built-ins/RegExp/property-escapes/generated/Assigned.js: 1171 default: 'Test262Error: `\p{Assigned}` should match U+01E2FF (`ð¿`)' 1172 strict mode: 'Test262Error: `\p{Assigned}` should match U+01E2FF (`ð¿`)' 1173 test/built-ins/RegExp/property-escapes/generated/Case_Ignorable.js: 1174 default: 'Test262Error: `\p{Case_Ignorable}` should match U+0119E0 (`ð§ `)' 1175 strict mode: 'Test262Error: `\p{Case_Ignorable}` should match U+0119E0 (`ð§ `)' 1176 test/built-ins/RegExp/property-escapes/generated/Cased.js: 1177 default: 'Test262Error: `\p{Cased}` should match U+00A7BA (`êº`)' 1178 strict mode: 'Test262Error: `\p{Cased}` should match U+00A7BA (`êº`)' 1179 test/built-ins/RegExp/property-escapes/generated/Changes_When_Casefolded.js: 1180 default: 'Test262Error: `\p{Changes_When_Casefolded}` should match U+00A7BA (`êº`)' 1181 strict mode: 'Test262Error: `\p{Changes_When_Casefolded}` should match U+00A7BA (`êº`)' 1182 test/built-ins/RegExp/property-escapes/generated/Changes_When_Casemapped.js: 1183 default: 'Test262Error: `\p{Changes_When_Casemapped}` should match U+001D8E (`á¶`)' 1184 strict mode: 'Test262Error: `\p{Changes_When_Casemapped}` should match U+001D8E (`á¶`)' 1185 test/built-ins/RegExp/property-escapes/generated/Changes_When_Lowercased.js: 1186 default: 'Test262Error: `\p{Changes_When_Lowercased}` should match U+00A7BA (`êº`)' 1187 strict mode: 'Test262Error: `\p{Changes_When_Lowercased}` should match U+00A7BA (`êº`)' 1188 test/built-ins/RegExp/property-escapes/generated/Changes_When_NFKC_Casefolded.js: 1189 default: 'Test262Error: `\p{Changes_When_NFKC_Casefolded}` should match U+00A7BA (`êº`)' 1190 strict mode: 'Test262Error: `\p{Changes_When_NFKC_Casefolded}` should match U+00A7BA (`êº`)' 1191 test/built-ins/RegExp/property-escapes/generated/Changes_When_Titlecased.js: 1192 default: 'Test262Error: `\p{Changes_When_Titlecased}` should match U+001D8E (`á¶`)' 1193 strict mode: 'Test262Error: `\p{Changes_When_Titlecased}` should match U+001D8E (`á¶`)' 1194 test/built-ins/RegExp/property-escapes/generated/Changes_When_Uppercased.js: 1195 default: 'Test262Error: `\p{Changes_When_Uppercased}` should match U+001D8E (`á¶`)' 1196 strict mode: 'Test262Error: `\p{Changes_When_Uppercased}` should match U+001D8E (`á¶`)' 1197 test/built-ins/RegExp/property-escapes/generated/Diacritic.js: 1198 default: 'Test262Error: `\p{Diacritic}` should match U+000EBA (`຺`)' 1199 strict mode: 'Test262Error: `\p{Diacritic}` should match U+000EBA (`຺`)' 1200 test/built-ins/RegExp/property-escapes/generated/Emoji.js: 1201 default: 'Test262Error: `\p{Emoji}` should match U+01F6D5 (`ð`)' 1202 strict mode: 'Test262Error: `\p{Emoji}` should match U+01F6D5 (`ð`)' 1203 test/built-ins/RegExp/property-escapes/generated/Emoji_Modifier_Base.js: 1204 default: 'Test262Error: `\p{Emoji_Modifier_Base}` should match U+01F48F (`ð`)' 1205 strict mode: 'Test262Error: `\p{Emoji_Modifier_Base}` should match U+01F48F (`ð`)' 1206 test/built-ins/RegExp/property-escapes/generated/Emoji_Presentation.js: 1207 default: 'Test262Error: `\p{Emoji_Presentation}` should match U+01F6D5 (`ð`)' 1208 strict mode: 'Test262Error: `\p{Emoji_Presentation}` should match U+01F6D5 (`ð`)' 1209 test/built-ins/RegExp/property-escapes/generated/Extender.js: 1210 default: 'Test262Error: `\p{Extender}` should match U+016FE3 (`ð¿£`)' 1211 strict mode: 'Test262Error: `\p{Extender}` should match U+016FE3 (`ð¿£`)' 1212 test/built-ins/RegExp/property-escapes/generated/General_Category_-_Cased_Letter.js: 1213 default: 'Test262Error: `\p{General_Category=Cased_Letter}` should match U+00A7BA (`êº`)' 1214 strict mode: 'Test262Error: `\p{General_Category=Cased_Letter}` should match U+00A7BA (`êº`)' 1215 test/built-ins/RegExp/property-escapes/generated/General_Category_-_Currency_Symbol.js: 1216 default: 'Test262Error: `\p{General_Category=Currency_Symbol}` should match U+01E2FF (`ð¿`)' 1217 strict mode: 'Test262Error: `\p{General_Category=Currency_Symbol}` should match U+01E2FF (`ð¿`)' 1218 test/built-ins/RegExp/property-escapes/generated/General_Category_-_Decimal_Number.js: 1219 default: 'Test262Error: `\p{General_Category=Decimal_Number}` should match U+01E140 (`ð 1220 `)' 1221 strict mode: 'Test262Error: `\p{General_Category=Decimal_Number}` should match U+01E140 (`ð 1222 `)' 1223 test/built-ins/RegExp/property-escapes/generated/General_Category_-_Format.js: 1224 default: 'Test262Error: `\p{General_Category=Format}` should match U+013430 (`ð°`)' 1225 strict mode: 'Test262Error: `\p{General_Category=Format}` should match U+013430 (`ð°`)' 1226 test/built-ins/RegExp/property-escapes/generated/General_Category_-_Letter.js: 1227 default: 'Test262Error: `\p{General_Category=Letter}` should match U+001CFA (`ᳺ`)' 1228 strict mode: 'Test262Error: `\p{General_Category=Letter}` should match U+001CFA (`ᳺ`)' 1229 test/built-ins/RegExp/property-escapes/generated/General_Category_-_Lowercase_Letter.js: 1230 default: 'Test262Error: `\p{General_Category=Lowercase_Letter}` should match U+00A7BB (`ê»`)' 1231 strict mode: 'Test262Error: `\p{General_Category=Lowercase_Letter}` should match U+00A7BB (`ê»`)' 1232 test/built-ins/RegExp/property-escapes/generated/General_Category_-_Mark.js: 1233 default: 'Test262Error: `\p{General_Category=Mark}` should match U+0119E4 (`ð§¤`)' 1234 strict mode: 'Test262Error: `\p{General_Category=Mark}` should match U+0119E4 (`ð§¤`)' 1235 test/built-ins/RegExp/property-escapes/generated/General_Category_-_Modifier_Letter.js: 1236 default: 'Test262Error: `\p{General_Category=Modifier_Letter}` should match U+016FE3 (`ð¿£`)' 1237 strict mode: 'Test262Error: `\p{General_Category=Modifier_Letter}` should match U+016FE3 (`ð¿£`)' 1238 test/built-ins/RegExp/property-escapes/generated/General_Category_-_Nonspacing_Mark.js: 1239 default: 'Test262Error: `\p{General_Category=Nonspacing_Mark}` should match U+0119E0 (`ð§ `)' 1240 strict mode: 'Test262Error: `\p{General_Category=Nonspacing_Mark}` should match U+0119E0 (`ð§ `)' 1241 test/built-ins/RegExp/property-escapes/generated/General_Category_-_Number.js: 1242 default: 'Test262Error: `\p{General_Category=Number}` should match U+011FC0 (`ð¿`)' 1243 strict mode: 'Test262Error: `\p{General_Category=Number}` should match U+011FC0 (`ð¿`)' 1244 test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other.js: 1245 default: 'Test262Error: `\P{General_Category=Other}` should match U+01E2FF (`ð¿`)' 1246 strict mode: 'Test262Error: `\P{General_Category=Other}` should match U+01E2FF (`ð¿`)' 1247 test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other_Letter.js: 1248 default: 'Test262Error: `\p{General_Category=Other_Letter}` should match U+001CFA (`ᳺ`)' 1249 strict mode: 'Test262Error: `\p{General_Category=Other_Letter}` should match U+001CFA (`ᳺ`)' 1250 test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other_Number.js: 1251 default: 'Test262Error: `\p{General_Category=Other_Number}` should match U+011FC0 (`ð¿`)' 1252 strict mode: 'Test262Error: `\p{General_Category=Other_Number}` should match U+011FC0 (`ð¿`)' 1253 test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other_Punctuation.js: 1254 default: 'Test262Error: `\p{General_Category=Other_Punctuation}` should match U+000C77 (`à±·`)' 1255 strict mode: 'Test262Error: `\p{General_Category=Other_Punctuation}` should match U+000C77 (`à±·`)' 1256 test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other_Symbol.js: 1257 default: 'Test262Error: `\p{General_Category=Other_Symbol}` should match U+00166D (`á`)' 1258 strict mode: 'Test262Error: `\p{General_Category=Other_Symbol}` should match U+00166D (`á`)' 1259 test/built-ins/RegExp/property-escapes/generated/General_Category_-_Punctuation.js: 1260 default: 'Test262Error: `\p{General_Category=Punctuation}` should match U+000C77 (`à±·`)' 1261 strict mode: 'Test262Error: `\p{General_Category=Punctuation}` should match U+000C77 (`à±·`)' 1262 test/built-ins/RegExp/property-escapes/generated/General_Category_-_Spacing_Mark.js: 1263 default: 'Test262Error: `\p{General_Category=Spacing_Mark}` should match U+0119E4 (`ð§¤`)' 1264 strict mode: 'Test262Error: `\p{General_Category=Spacing_Mark}` should match U+0119E4 (`ð§¤`)' 1265 test/built-ins/RegExp/property-escapes/generated/General_Category_-_Symbol.js: 1266 default: 'Test262Error: `\p{General_Category=Symbol}` should match U+00166D (`á`)' 1267 strict mode: 'Test262Error: `\p{General_Category=Symbol}` should match U+00166D (`á`)' 1268 test/built-ins/RegExp/property-escapes/generated/General_Category_-_Unassigned.js: 1269 default: 'Test262Error: `\P{General_Category=Unassigned}` should match U+01E2FF (`ð¿`)' 1270 strict mode: 'Test262Error: `\P{General_Category=Unassigned}` should match U+01E2FF (`ð¿`)' 1271 test/built-ins/RegExp/property-escapes/generated/General_Category_-_Uppercase_Letter.js: 1272 default: 'Test262Error: `\p{General_Category=Uppercase_Letter}` should match U+00A7BA (`êº`)' 1273 strict mode: 'Test262Error: `\p{General_Category=Uppercase_Letter}` should match U+00A7BA (`êº`)' 1274 test/built-ins/RegExp/property-escapes/generated/Grapheme_Base.js: 1275 default: 'Test262Error: `\p{Grapheme_Base}` should match U+001CFA (`ᳺ`)' 1276 strict mode: 'Test262Error: `\p{Grapheme_Base}` should match U+001CFA (`ᳺ`)' 1277 test/built-ins/RegExp/property-escapes/generated/Grapheme_Extend.js: 1278 default: 'Test262Error: `\p{Grapheme_Extend}` should match U+0119E0 (`ð§ `)' 1279 strict mode: 'Test262Error: `\p{Grapheme_Extend}` should match U+0119E0 (`ð§ `)' 1280 test/built-ins/RegExp/property-escapes/generated/ID_Continue.js: 1281 default: 'Test262Error: `\p{ID_Continue}` should match U+016FE3 (`ð¿£`)' 1282 strict mode: 'Test262Error: `\p{ID_Continue}` should match U+016FE3 (`ð¿£`)' 1283 test/built-ins/RegExp/property-escapes/generated/ID_Start.js: 1284 default: 'Test262Error: `\p{ID_Start}` should match U+001CFA (`ᳺ`)' 1285 strict mode: 'Test262Error: `\p{ID_Start}` should match U+001CFA (`ᳺ`)' 1286 test/built-ins/RegExp/property-escapes/generated/Ideographic.js: 1287 default: 'Test262Error: `\p{Ideographic}` should match U+0187F2 (`ð²`)' 1288 strict mode: 'Test262Error: `\p{Ideographic}` should match U+0187F2 (`ð²`)' 1289 test/built-ins/RegExp/property-escapes/generated/Lowercase.js: 1290 default: 'Test262Error: `\p{Lowercase}` should match U+00A7BB (`ê»`)' 1291 strict mode: 'Test262Error: `\p{Lowercase}` should match U+00A7BB (`ê»`)' 1292 test/built-ins/RegExp/property-escapes/generated/Script_-_Adlam.js: 1293 default: 'Test262Error: `\p{Script=Adlam}` should match U+01E94B (`ð¥`)' 1294 strict mode: 'Test262Error: `\p{Script=Adlam}` should match U+01E94B (`ð¥`)' 1295 test/built-ins/RegExp/property-escapes/generated/Script_-_Common.js: 1296 default: 'Test262Error: `\p{Script=Common}` should match U+001CFA (`ᳺ`)' 1297 strict mode: 'Test262Error: `\p{Script=Common}` should match U+001CFA (`ᳺ`)' 1298 test/built-ins/RegExp/property-escapes/generated/Script_-_Devanagari.js: 1299 default: 'Test262Error: `\P{Script=Devanagari}` should match U+000953 (`à¥`)' 1300 strict mode: 'Test262Error: `\P{Script=Devanagari}` should match U+000953 (`à¥`)' 1301 test/built-ins/RegExp/property-escapes/generated/Script_-_Egyptian_Hieroglyphs.js: 1302 default: 'Test262Error: `\p{Script=Egyptian_Hieroglyphs}` should match U+013430 (`ð°`)' 1303 strict mode: 'Test262Error: `\p{Script=Egyptian_Hieroglyphs}` should match U+013430 (`ð°`)' 1304 test/built-ins/RegExp/property-escapes/generated/Script_-_Elymaic.js: 1305 default: 'SyntaxError: Invalid regular expression: invalid property expression' 1306 strict mode: 'SyntaxError: Invalid regular expression: invalid property expression' 1307 test/built-ins/RegExp/property-escapes/generated/Script_-_Hiragana.js: 1308 default: 'Test262Error: `\p{Script=Hiragana}` should match U+01B150 (`ð 1309 `)' 1310 strict mode: 'Test262Error: `\p{Script=Hiragana}` should match U+01B150 (`ð 1311 `)' 1312 test/built-ins/RegExp/property-escapes/generated/Script_-_Inherited.js: 1313 default: 'Test262Error: `\p{Script=Inherited}` should match U+000953 (`à¥`)' 1314 strict mode: 'Test262Error: `\p{Script=Inherited}` should match U+000953 (`à¥`)' 1315 test/built-ins/RegExp/property-escapes/generated/Script_-_Katakana.js: 1316 default: 'Test262Error: `\p{Script=Katakana}` should match U+01B164 (`ð 1317 ¤`)' 1318 strict mode: 'Test262Error: `\p{Script=Katakana}` should match U+01B164 (`ð 1319 ¤`)' 1320 test/built-ins/RegExp/property-escapes/generated/Script_-_Lao.js: 1321 default: 'Test262Error: `\p{Script=Lao}` should match U+000E86 (`àº`)' 1322 strict mode: 'Test262Error: `\p{Script=Lao}` should match U+000E86 (`àº`)' 1323 test/built-ins/RegExp/property-escapes/generated/Script_-_Latin.js: 1324 default: 'Test262Error: `\p{Script=Latin}` should match U+00A7BA (`êº`)' 1325 strict mode: 'Test262Error: `\p{Script=Latin}` should match U+00A7BA (`êº`)' 1326 test/built-ins/RegExp/property-escapes/generated/Script_-_Miao.js: 1327 default: 'Test262Error: `\p{Script=Miao}` should match U+016F45 (`ð½ 1328 `)' 1329 strict mode: 'Test262Error: `\p{Script=Miao}` should match U+016F45 (`ð½ 1330 `)' 1331 test/built-ins/RegExp/property-escapes/generated/Script_-_Nandinagari.js: 1332 default: 'SyntaxError: Invalid regular expression: invalid property expression' 1333 strict mode: 'SyntaxError: Invalid regular expression: invalid property expression' 1334 test/built-ins/RegExp/property-escapes/generated/Script_-_Newa.js: 1335 default: 'Test262Error: `\p{Script=Newa}` should match U+01145F (`ð`)' 1336 strict mode: 'Test262Error: `\p{Script=Newa}` should match U+01145F (`ð`)' 1337 test/built-ins/RegExp/property-escapes/generated/Script_-_Nyiakeng_Puachue_Hmong.js: 1338 default: 'SyntaxError: Invalid regular expression: invalid property expression' 1339 strict mode: 'SyntaxError: Invalid regular expression: invalid property expression' 1340 test/built-ins/RegExp/property-escapes/generated/Script_-_Soyombo.js: 1341 default: 'Test262Error: `\p{Script=Soyombo}` should match U+011A84 (`ðª`)' 1342 strict mode: 'Test262Error: `\p{Script=Soyombo}` should match U+011A84 (`ðª`)' 1343 test/built-ins/RegExp/property-escapes/generated/Script_-_Takri.js: 1344 default: 'Test262Error: `\p{Script=Takri}` should match U+0116B8 (`ð¸`)' 1345 strict mode: 'Test262Error: `\p{Script=Takri}` should match U+0116B8 (`ð¸`)' 1346 test/built-ins/RegExp/property-escapes/generated/Script_-_Tamil.js: 1347 default: 'Test262Error: `\p{Script=Tamil}` should match U+011FFF (`ð¿¿`)' 1348 strict mode: 'Test262Error: `\p{Script=Tamil}` should match U+011FFF (`ð¿¿`)' 1349 test/built-ins/RegExp/property-escapes/generated/Script_-_Tangut.js: 1350 default: 'Test262Error: `\p{Script=Tangut}` should match U+0187F2 (`ð²`)' 1351 strict mode: 'Test262Error: `\p{Script=Tangut}` should match U+0187F2 (`ð²`)' 1352 test/built-ins/RegExp/property-escapes/generated/Script_-_Telugu.js: 1353 default: 'Test262Error: `\p{Script=Telugu}` should match U+000C77 (`à±·`)' 1354 strict mode: 'Test262Error: `\p{Script=Telugu}` should match U+000C77 (`à±·`)' 1355 test/built-ins/RegExp/property-escapes/generated/Script_-_Wancho.js: 1356 default: 'SyntaxError: Invalid regular expression: invalid property expression' 1357 strict mode: 'SyntaxError: Invalid regular expression: invalid property expression' 1358 test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Adlam.js: 1359 default: 'Test262Error: `\p{Script_Extensions=Adlam}` should match U+01E94B (`ð¥`)' 1360 strict mode: 'Test262Error: `\p{Script_Extensions=Adlam}` should match U+01E94B (`ð¥`)' 1361 test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Bengali.js: 1362 default: 'Test262Error: `\p{Script_Extensions=Bengali}` should match U+001CF2 (`á³²`)' 1363 strict mode: 'Test262Error: `\p{Script_Extensions=Bengali}` should match U+001CF2 (`á³²`)' 1364 test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Common.js: 1365 default: 'Test262Error: `\p{Script_Extensions=Common}` should match U+002BC9 (`â¯`)' 1366 strict mode: 'Test262Error: `\p{Script_Extensions=Common}` should match U+002BC9 (`â¯`)' 1367 test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Devanagari.js: 1368 default: 'Test262Error: `\P{Script_Extensions=Devanagari}` should match U+000953 (`à¥`)' 1369 strict mode: 'Test262Error: `\P{Script_Extensions=Devanagari}` should match U+000953 (`à¥`)' 1370 test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Egyptian_Hieroglyphs.js: 1371 default: 'Test262Error: `\p{Script_Extensions=Egyptian_Hieroglyphs}` should match U+013430 (`ð°`)' 1372 strict mode: 'Test262Error: `\p{Script_Extensions=Egyptian_Hieroglyphs}` should match U+013430 (`ð°`)' 1373 test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Elymaic.js: 1374 default: 'SyntaxError: Invalid regular expression: invalid property expression' 1375 strict mode: 'SyntaxError: Invalid regular expression: invalid property expression' 1376 test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Grantha.js: 1377 default: 'Test262Error: `\p{Script_Extensions=Grantha}` should match U+011FD3 (`ð¿`)' 1378 strict mode: 'Test262Error: `\p{Script_Extensions=Grantha}` should match U+011FD3 (`ð¿`)' 1379 test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hiragana.js: 1380 default: 'Test262Error: `\p{Script_Extensions=Hiragana}` should match U+01B150 (`ð 1381 `)' 1382 strict mode: 'Test262Error: `\p{Script_Extensions=Hiragana}` should match U+01B150 (`ð 1383 `)' 1384 test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Inherited.js: 1385 default: 'Test262Error: `\p{Script_Extensions=Inherited}` should match U+000953 (`à¥`)' 1386 strict mode: 'Test262Error: `\p{Script_Extensions=Inherited}` should match U+000953 (`à¥`)' 1387 test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Kannada.js: 1388 default: 'Test262Error: `\p{Script_Extensions=Kannada}` should match U+001CF2 (`á³²`)' 1389 strict mode: 'Test262Error: `\p{Script_Extensions=Kannada}` should match U+001CF2 (`á³²`)' 1390 test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Katakana.js: 1391 default: 'Test262Error: `\p{Script_Extensions=Katakana}` should match U+01B164 (`ð 1392 ¤`)' 1393 strict mode: 'Test262Error: `\p{Script_Extensions=Katakana}` should match U+01B164 (`ð 1394 ¤`)' 1395 test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Lao.js: 1396 default: 'Test262Error: `\p{Script_Extensions=Lao}` should match U+000E86 (`àº`)' 1397 strict mode: 'Test262Error: `\p{Script_Extensions=Lao}` should match U+000E86 (`àº`)' 1398 test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Latin.js: 1399 default: 'Test262Error: `\p{Script_Extensions=Latin}` should match U+00202F (`â¯`)' 1400 strict mode: 'Test262Error: `\p{Script_Extensions=Latin}` should match U+00202F (`â¯`)' 1401 test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Masaram_Gondi.js: 1402 default: 'Test262Error: `\p{Script_Extensions=Masaram_Gondi}` should match U+000964 (`।`)' 1403 strict mode: 'Test262Error: `\p{Script_Extensions=Masaram_Gondi}` should match U+000964 (`।`)' 1404 test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Miao.js: 1405 default: 'Test262Error: `\p{Script_Extensions=Miao}` should match U+016F45 (`ð½ 1406 `)' 1407 strict mode: 'Test262Error: `\p{Script_Extensions=Miao}` should match U+016F45 (`ð½ 1408 `)' 1409 test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Mongolian.js: 1410 default: 'Test262Error: `\p{Script_Extensions=Mongolian}` should match U+00202F (`â¯`)' 1411 strict mode: 'Test262Error: `\p{Script_Extensions=Mongolian}` should match U+00202F (`â¯`)' 1412 test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Nandinagari.js: 1413 default: 'SyntaxError: Invalid regular expression: invalid property expression' 1414 strict mode: 'SyntaxError: Invalid regular expression: invalid property expression' 1415 test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Newa.js: 1416 default: 'Test262Error: `\p{Script_Extensions=Newa}` should match U+01145F (`ð`)' 1417 strict mode: 'Test262Error: `\p{Script_Extensions=Newa}` should match U+01145F (`ð`)' 1418 test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Nyiakeng_Puachue_Hmong.js: 1419 default: 'SyntaxError: Invalid regular expression: invalid property expression' 1420 strict mode: 'SyntaxError: Invalid regular expression: invalid property expression' 1421 test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Oriya.js: 1422 default: 'Test262Error: `\p{Script_Extensions=Oriya}` should match U+001CF2 (`á³²`)' 1423 strict mode: 'Test262Error: `\p{Script_Extensions=Oriya}` should match U+001CF2 (`á³²`)' 1424 test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Soyombo.js: 1425 default: 'Test262Error: `\p{Script_Extensions=Soyombo}` should match U+011A84 (`ðª`)' 1426 strict mode: 'Test262Error: `\p{Script_Extensions=Soyombo}` should match U+011A84 (`ðª`)' 1427 test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Takri.js: 1428 default: 'Test262Error: `\p{Script_Extensions=Takri}` should match U+0116B8 (`ð¸`)' 1429 strict mode: 'Test262Error: `\p{Script_Extensions=Takri}` should match U+0116B8 (`ð¸`)' 1430 test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tamil.js: 1431 default: 'Test262Error: `\p{Script_Extensions=Tamil}` should match U+011FFF (`ð¿¿`)' 1432 strict mode: 'Test262Error: `\p{Script_Extensions=Tamil}` should match U+011FFF (`ð¿¿`)' 1433 test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tangut.js: 1434 default: 'Test262Error: `\p{Script_Extensions=Tangut}` should match U+0187F2 (`ð²`)' 1435 strict mode: 'Test262Error: `\p{Script_Extensions=Tangut}` should match U+0187F2 (`ð²`)' 1436 test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Telugu.js: 1437 default: 'Test262Error: `\p{Script_Extensions=Telugu}` should match U+001CF2 (`á³²`)' 1438 strict mode: 'Test262Error: `\p{Script_Extensions=Telugu}` should match U+001CF2 (`á³²`)' 1439 test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tirhuta.js: 1440 default: 'Test262Error: `\p{Script_Extensions=Tirhuta}` should match U+001CF2 (`á³²`)' 1441 strict mode: 'Test262Error: `\p{Script_Extensions=Tirhuta}` should match U+001CF2 (`á³²`)' 1442 test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Wancho.js: 1443 default: 'SyntaxError: Invalid regular expression: invalid property expression' 1444 strict mode: 'SyntaxError: Invalid regular expression: invalid property expression' 1445 test/built-ins/RegExp/property-escapes/generated/Terminal_Punctuation.js: 1446 default: 'Test262Error: `\p{Terminal_Punctuation}` should match U+002E4F (`â¹`)' 1447 strict mode: 'Test262Error: `\p{Terminal_Punctuation}` should match U+002E4F (`â¹`)' 1448 test/built-ins/RegExp/property-escapes/generated/Uppercase.js: 1449 default: 'Test262Error: `\p{Uppercase}` should match U+00A7BA (`êº`)' 1450 strict mode: 'Test262Error: `\p{Uppercase}` should match U+00A7BA (`êº`)' 1451 test/built-ins/RegExp/property-escapes/generated/XID_Continue.js: 1452 default: 'Test262Error: `\p{XID_Continue}` should match U+016FE3 (`ð¿£`)' 1453 strict mode: 'Test262Error: `\p{XID_Continue}` should match U+016FE3 (`ð¿£`)' 1454 test/built-ins/RegExp/property-escapes/generated/XID_Start.js: 1455 default: 'Test262Error: `\p{XID_Start}` should match U+001CFA (`ᳺ`)' 1456 strict mode: 'Test262Error: `\p{XID_Start}` should match U+001CFA (`ᳺ`)' 1131 1457 test/built-ins/RegExp/property-escapes/non-existent-property-value-General_Category-negated.js: 1132 1458 default: 'Test262: This statement should not be evaluated.' … … 1473 1799 default: 'Test262Error: Test data "de-gregory-gregory" is a canonicalized and structurally valid language tag.' 1474 1800 strict mode: 'Test262Error: Test data "de-gregory-gregory" is a canonicalized and structurally valid language tag.' 1475 test/intl402/ NumberFormat/currencyDisplay-unit.js:1476 default: ' RangeError: currencyDisplay must be either "code", "symbol", or "name"'1477 strict mode: ' RangeError: currencyDisplay must be either "code", "symbol", or "name"'1801 test/intl402/Intl/getCanonicalLocales/non-iana-canon.js: 1802 default: 'Test262Error: The value of Intl.getCanonicalLocales(tag)[0] equals the value of `canonical` Expected SameValue(«aar-x-private», «aa-x-private») to be true' 1803 strict mode: 'Test262Error: The value of Intl.getCanonicalLocales(tag)[0] equals the value of `canonical` Expected SameValue(«aar-x-private», «aa-x-private») to be true' 1478 1804 test/intl402/NumberFormat/prototype/format/format-function-name.js: 1479 1805 default: 'Test262Error: Expected SameValue(«true», «false») to be true' … … 1482 1808 default: 'Test262Error: Intl.NumberFormat is formatting 0 and -0 the same way. Expected SameValue(«0», «0») to be false' 1483 1809 strict mode: 'Test262Error: Intl.NumberFormat is formatting 0 and -0 the same way. Expected SameValue(«0», «0») to be false' 1484 test/intl402/NumberFormat/style-unit.js:1485 default: 'RangeError: style must be either "decimal", "percent", or "currency"'1486 strict mode: 'RangeError: style must be either "decimal", "percent", or "currency"'1487 1810 test/intl402/supportedLocalesOf-returned-array-elements-are-not-frozen.js: 1488 1811 default: 'Test262Error: Property 0 of object returned by SupportedLocales is not writable. Expected SameValue(«false», «true») to be true (Testing with Collator.)' … … 1589 1912 test/language/block-scope/syntax/redeclaration/var-redeclaration-attempt-after-generator.js: 1590 1913 default: 'Test262: This statement should not be evaluated.' 1914 test/language/comments/hashbang/eval-indirect.js: 1915 default: "SyntaxError: Invalid character: '#'" 1916 strict mode: "SyntaxError: Invalid character: '#'" 1917 test/language/comments/hashbang/eval.js: 1918 default: "SyntaxError: Invalid character: '#'" 1919 strict mode: "SyntaxError: Invalid character: '#'" 1920 test/language/comments/hashbang/no-line-separator.js: 1921 default: "SyntaxError: Invalid character: '#'" 1922 strict mode: "SyntaxError: Invalid character: '#'" 1591 1923 test/language/computed-property-names/class/static/method-number.js: 1592 1924 default: "Test262Error: `compareArray(Object.getOwnPropertyNames(C), ['1', '2', 'length', 'prototype', 'name', 'a', 'c'])` returns `true`" -
trunk/JSTests/test262/test/intl402/DateTimeFormat/prototype/formatRange/date-is-infinity-throws.js
r245188 r245201 3 3 4 4 /*--- 5 description: 5 description: | 6 6 Throws a RangeError if date arg is cast to an Infinity value 7 info: 7 info: > 8 8 Intl.DateTimeFormat.prototype.formatRange ( startDate , endDate ) 9 9 -
trunk/JSTests/test262/test/intl402/DateTimeFormat/prototype/formatRange/date-is-nan-throws.js
r245188 r245201 3 3 4 4 /*--- 5 description: 5 description: | 6 6 Throws a RangeError if date arg is cast to NaN 7 info: 7 info: > 8 8 Intl.DateTimeFormat.prototype.formatRange ( startDate , endDate ) 9 9 -
trunk/JSTests/test262/test/intl402/DateTimeFormat/prototype/formatRange/date-undefined-throws.js
r245188 r245201 3 3 4 4 /*--- 5 description: 5 description: | 6 6 Throws a RangeError if startDate or endDate is undefined. 7 info: 7 info: > 8 8 Intl.DateTimeFormat.prototype.formatRange ( startDate , endDate ) 9 9 -
trunk/JSTests/test262/test/intl402/DateTimeFormat/prototype/formatRange/date-x-greater-than-y-throws.js
r245188 r245201 3 3 4 4 /*--- 5 description: 5 description: | 6 6 Throws a RangeError if date x is greater than y. 7 info: 7 info: > 8 8 Intl.DateTimeFormat.prototype.formatRange ( startDate , endDate ) 9 9 -
trunk/JSTests/test262/test/intl402/DateTimeFormat/prototype/formatRange/this-is-not-object-throws.js
r245188 r245201 3 3 4 4 /*--- 5 description: 5 description: | 6 6 Throws a TypeError if this is not Object. 7 info: 7 info: > 8 8 Intl.DateTimeFormat.prototype.formatRange ( startDate , endDate ) 9 9 -
trunk/JSTests/test262/test/intl402/DateTimeFormat/prototype/formatRangeToParts/date-is-infinity-throws.js
r245188 r245201 3 3 4 4 /*--- 5 description: 5 description: | 6 6 Throws a RangeError if date arg is cast to an Infinity value 7 info: 7 info: > 8 8 Intl.DateTimeFormat.prototype.formatRangeToParts ( startDate , endDate ) 9 9 -
trunk/JSTests/test262/test/intl402/DateTimeFormat/prototype/formatRangeToParts/date-is-nan-throws.js
r245188 r245201 3 3 4 4 /*--- 5 description: 5 description: | 6 6 Throws a RangeError if date arg is cast to Nan 7 info: 7 info: > 8 8 Intl.DateTimeFormat.prototype.formatRangeToParts ( startDate , endDate ) 9 9 -
trunk/JSTests/test262/test/intl402/DateTimeFormat/prototype/formatRangeToParts/date-undefined-throws.js
r245188 r245201 3 3 4 4 /*--- 5 description: 5 description: | 6 6 Throws a RangeError if startDate or endDate are undefined. 7 info: 7 info: > 8 8 Intl.DateTimeFormat.prototype.formatRangeToParts ( startDate , endDate ) 9 9 -
trunk/JSTests/test262/test/intl402/DateTimeFormat/prototype/formatRangeToParts/date-x-greater-than-y-throws.js
r245188 r245201 3 3 4 4 /*--- 5 description: 5 description: | 6 6 Throws a RangeError if date x is greater than y. 7 info: 7 info: > 8 8 Intl.DateTimeFormat.prototype.formatRangeToParts ( startDate , endDate ) 9 9 -
trunk/JSTests/test262/test/intl402/DateTimeFormat/prototype/formatRangeToParts/this-is-not-object-throws.js
r245188 r245201 3 3 4 4 /*--- 5 description: 5 description: | 6 6 Throws a TypeError if this is not Object. 7 info: 7 info: > 8 8 Intl.DateTimeFormat.prototype.formatRangeToParts ( startDate , endDate ) 9 9
Note:
See TracChangeset
for help on using the changeset viewer.