From 8b439843b979450757ce30448890eed6e1ac9931 Mon Sep 17 00:00:00 2001 From: lixingyang-li Date: Wed, 27 Apr 2022 15:17:10 +0800 Subject: [PATCH] Add internationalization listformat module 262 test cases Signed-off-by: lixingyang-li https://gitee.com/openharmony/ark_ts2abc/issues/I54ZGC --- test262/es2015_tests.txt | 84 +++++++++++++++++++++++++++++++++++++++- 1 file changed, 83 insertions(+), 1 deletion(-) diff --git a/test262/es2015_tests.txt b/test262/es2015_tests.txt index 8800ea2d9a..773368a690 100644 --- a/test262/es2015_tests.txt +++ b/test262/es2015_tests.txt @@ -6550,4 +6550,86 @@ intl402/DisplayNames/prototype/resolvedOptions/option-type.js intl402/DisplayNames/prototype/resolvedOptions/prop-desc.js intl402/DisplayNames/prototype/resolvedOptions/return-object.js intl402/DisplayNames/prototype/resolvedOptions/this-not-object-throws.js -intl402/DisplayNames/prototype/resolvedOptions/this-object-lacks-internal-throws.js \ No newline at end of file +intl402/DisplayNames/prototype/resolvedOptions/this-object-lacks-internal-throws.js +intl402/ListFormat/constructor/length.js +intl402/ListFormat/constructor/name.js +intl402/ListFormat/constructor/prop-desc.js +intl402/ListFormat/constructor/prototype.js +intl402/ListFormat/constructor/constructor/locales-invalid.js +intl402/ListFormat/constructor/constructor/locales-valid.js +intl402/ListFormat/constructor/constructor/newtarget-undefined.js +intl402/ListFormat/constructor/constructor/options-invalid.js +intl402/ListFormat/constructor/constructor/options-localeMatcher-invalid.js +intl402/ListFormat/constructor/constructor/options-order.js +intl402/ListFormat/constructor/constructor/options-style-invalid.js +intl402/ListFormat/constructor/constructor/options-style-valid.js +intl402/ListFormat/constructor/constructor/options-throwing-getters.js +intl402/ListFormat/constructor/constructor/options-toobject.js +intl402/ListFormat/constructor/constructor/options-toobject-prototype.js +intl402/ListFormat/constructor/constructor/options-type-invalid.js +intl402/ListFormat/constructor/constructor/options-type-valid.js +intl402/ListFormat/constructor/constructor/options-undefined.js +intl402/ListFormat/constructor/constructor/proto-from-ctor-realm.js +intl402/ListFormat/constructor/constructor/subclassing.js +intl402/ListFormat/constructor/supportedLocalesOf/basic.js +intl402/ListFormat/constructor/supportedLocalesOf/branding.js +intl402/ListFormat/constructor/supportedLocalesOf/length.js +intl402/ListFormat/constructor/supportedLocalesOf/locales-invalid.js +intl402/ListFormat/constructor/supportedLocalesOf/name.js +intl402/ListFormat/constructor/supportedLocalesOf/options-localeMatcher-invalid.js +intl402/ListFormat/constructor/supportedLocalesOf/options-null.js +intl402/ListFormat/constructor/supportedLocalesOf/options-toobject.js +intl402/ListFormat/constructor/supportedLocalesOf/options-undefined.js +intl402/ListFormat/constructor/supportedLocalesOf/prop-desc.js +intl402/ListFormat/constructor/supportedLocalesOf/result-type.js +intl402/ListFormat/instance/extensibility.js +intl402/ListFormat/instance/prototype.js +intl402/ListFormat/prototype/prop-desc.js +intl402/ListFormat/prototype/constructor/prop-desc.js +intl402/ListFormat/prototype/format/branding.js +intl402/ListFormat/prototype/format/en-us-default.js +intl402/ListFormat/prototype/format/en-us-disjunction.js +intl402/ListFormat/prototype/format/en-us-narrow.js +intl402/ListFormat/prototype/format/en-us-short.js +intl402/ListFormat/prototype/format/en-us-unit.js +intl402/ListFormat/prototype/format/es-es-long.js +intl402/ListFormat/prototype/format/es-es-narrow.js +intl402/ListFormat/prototype/format/es-es-short.js +intl402/ListFormat/prototype/format/iterable.js +intl402/ListFormat/prototype/format/iterable-getiterator-throw.js +intl402/ListFormat/prototype/format/iterable-invalid.js +intl402/ListFormat/prototype/format/iterable-iteratorclose.js +intl402/ListFormat/prototype/format/iterable-iteratorstep-throw.js +intl402/ListFormat/prototype/format/iterable-iteratorvalue-throw.js +intl402/ListFormat/prototype/format/iterable-undefined.js +intl402/ListFormat/prototype/format/length.js +intl402/ListFormat/prototype/format/name.js +intl402/ListFormat/prototype/format/prop-desc.js +intl402/ListFormat/prototype/formatToParts/branding.js +intl402/ListFormat/prototype/formatToParts/en-us-default.js +intl402/ListFormat/prototype/formatToParts/en-us-disjunction.js +intl402/ListFormat/prototype/formatToParts/en-us-narrow.js +intl402/ListFormat/prototype/formatToParts/en-us-short.js +intl402/ListFormat/prototype/formatToParts/en-us-unit.js +intl402/ListFormat/prototype/formatToParts/es-es-long.js +intl402/ListFormat/prototype/formatToParts/es-es-narrow.js +intl402/ListFormat/prototype/formatToParts/es-es-short.js +intl402/ListFormat/prototype/formatToParts/iterable.js +intl402/ListFormat/prototype/formatToParts/iterable-getiterator-throw.js +intl402/ListFormat/prototype/formatToParts/iterable-invalid.js +intl402/ListFormat/prototype/formatToParts/iterable-iteratorclose.js +intl402/ListFormat/prototype/formatToParts/iterable-iteratorstep-throw.js +intl402/ListFormat/prototype/formatToParts/iterable-iteratorvalue-throw.js +intl402/ListFormat/prototype/formatToParts/iterable-undefined.js +intl402/ListFormat/prototype/formatToParts/length.js +intl402/ListFormat/prototype/formatToParts/name.js +intl402/ListFormat/prototype/formatToParts/prop-desc.js +intl402/ListFormat/prototype/resolvedOptions/branding.js +intl402/ListFormat/prototype/resolvedOptions/caching.js +intl402/ListFormat/prototype/resolvedOptions/length.js +intl402/ListFormat/prototype/resolvedOptions/name.js +intl402/ListFormat/prototype/resolvedOptions/order.js +intl402/ListFormat/prototype/resolvedOptions/prop-desc.js +intl402/ListFormat/prototype/resolvedOptions/type.js +intl402/ListFormat/prototype/toStringTag/toString.js +intl402/ListFormat/prototype/toStringTag/toStringTag.js -- Gitee