From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- testing/web-platform/meta/wasm/jsapi/__dir__.ini | 2 + .../constructor/instantiate-bad-imports.any.js.ini | 5 + .../wasm/jsapi/constructor/instantiate.any.js.ini | 11 ++ .../wasm/jsapi/constructor/multi-value.any.js.ini | 7 + .../wasm/jsapi/constructor/validate.any.js.ini | 7 + .../exception/constructor.tentative.any.js.ini | 7 + .../jsapi/exception/getArg.tentative.any.js.ini | 17 +++ .../wasm/jsapi/exception/is.tentative.any.js.ini | 7 + .../jsapi/exception/toString.tentative.any.js.ini | 7 + .../wasm/jsapi/function/call.tentative.any.js.ini | 22 +++ .../function/constructor.tentative.any.js.ini | 133 +++++++++++++++++ .../wasm/jsapi/function/table.tentative.any.js.ini | 20 +++ .../wasm/jsapi/function/type.tentative.any.js.ini | 32 ++++ .../entry-different-function-realm.html.ini | 4 + .../meta/wasm/jsapi/functions/entry.html.ini | 4 + .../meta/wasm/jsapi/functions/incumbent.html.ini | 3 + .../meta/wasm/jsapi/global/toString.any.js.ini | 5 + .../wasm/jsapi/global/type.tentative.any.js.ini | 164 +++++++++++++++++++++ .../wasm/jsapi/global/value-get-set.any.js.ini | 7 + .../meta/wasm/jsapi/global/valueOf.any.js.ini | 7 + .../meta/wasm/jsapi/idlharness.any.js.ini | 9 ++ .../meta/wasm/jsapi/instance/__dir__.ini | 1 + .../jsapi/instance/constructor-caching.any.js.ini | 5 + .../wasm/jsapi/instance/constructor.any.js.ini | 7 + .../meta/wasm/jsapi/instance/exports.any.js.ini | 7 + .../meta/wasm/jsapi/instance/toString.any.js.ini | 7 + .../meta/wasm/jsapi/interface.any.js.ini | 17 +++ .../memory/constructor-shared.tentative.any.js.ini | 14 ++ .../memory/constructor-types.tentative.any.js.ini | 44 ++++++ .../meta/wasm/jsapi/memory/constructor.any.js.ini | 20 +++ .../meta/wasm/jsapi/memory/grow.any.js.ini | 17 +++ .../meta/wasm/jsapi/memory/toString.any.js.ini | 7 + .../wasm/jsapi/memory/type.tentative.any.js.ini | 80 ++++++++++ .../wasm/jsapi/module/customSections.any.js.ini | 14 ++ .../meta/wasm/jsapi/module/exports.any.js.ini | 7 + .../meta/wasm/jsapi/module/imports.any.js.ini | 7 + .../meta/wasm/jsapi/module/toString.any.js.ini | 7 + .../meta/wasm/jsapi/proto-from-ctor-realm.html.ini | 3 + .../meta/wasm/jsapi/prototypes.any.js.ini | 7 + .../web-platform/meta/wasm/jsapi/table/__dir__.ini | 1 + .../table/constructor-types.tentative.any.js.ini | 32 ++++ .../meta/wasm/jsapi/table/get-set.any.js.ini | 7 + .../meta/wasm/jsapi/table/grow.any.js.ini | 7 + .../meta/wasm/jsapi/table/length.any.js.ini | 7 + .../meta/wasm/jsapi/table/toString.any.js.ini | 7 + .../wasm/jsapi/table/type.tentative.any.js.ini | 56 +++++++ .../meta/wasm/jsapi/tag/type.tentative.any.js.ini | 44 ++++++ 47 files changed, 912 insertions(+) create mode 100644 testing/web-platform/meta/wasm/jsapi/__dir__.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/constructor/instantiate-bad-imports.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/constructor/instantiate.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/constructor/multi-value.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/constructor/validate.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/exception/constructor.tentative.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/exception/getArg.tentative.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/exception/is.tentative.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/exception/toString.tentative.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/function/call.tentative.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/function/constructor.tentative.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/function/table.tentative.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/function/type.tentative.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/functions/entry-different-function-realm.html.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/functions/entry.html.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/functions/incumbent.html.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/global/toString.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/global/type.tentative.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/global/value-get-set.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/global/valueOf.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/idlharness.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/instance/__dir__.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/instance/constructor-caching.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/instance/constructor.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/instance/exports.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/instance/toString.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/interface.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/memory/constructor-shared.tentative.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/memory/constructor-types.tentative.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/memory/constructor.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/memory/grow.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/memory/toString.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/memory/type.tentative.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/module/customSections.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/module/exports.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/module/imports.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/module/toString.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/proto-from-ctor-realm.html.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/prototypes.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/table/__dir__.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/table/constructor-types.tentative.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/table/get-set.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/table/grow.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/table/length.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/table/toString.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/table/type.tentative.any.js.ini create mode 100644 testing/web-platform/meta/wasm/jsapi/tag/type.tentative.any.js.ini (limited to 'testing/web-platform/meta/wasm/jsapi') diff --git a/testing/web-platform/meta/wasm/jsapi/__dir__.ini b/testing/web-platform/meta/wasm/jsapi/__dir__.ini new file mode 100644 index 0000000000..e7b2397e45 --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/__dir__.ini @@ -0,0 +1,2 @@ +disabled: + if not wasm: missing support for WebAssembly diff --git a/testing/web-platform/meta/wasm/jsapi/constructor/instantiate-bad-imports.any.js.ini b/testing/web-platform/meta/wasm/jsapi/constructor/instantiate-bad-imports.any.js.ini new file mode 100644 index 0000000000..b469a3b9f4 --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/constructor/instantiate-bad-imports.any.js.ini @@ -0,0 +1,5 @@ +[instantiate-bad-imports.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + +[instantiate-bad-imports.any.worker.html] diff --git a/testing/web-platform/meta/wasm/jsapi/constructor/instantiate.any.js.ini b/testing/web-platform/meta/wasm/jsapi/constructor/instantiate.any.js.ini new file mode 100644 index 0000000000..544f7441ef --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/constructor/instantiate.any.js.ini @@ -0,0 +1,11 @@ +[instantiate.any.js] + disabled: https://bugzilla.mozilla.org/show_bug.cgi?id=1556807 + +[instantiate.any.worker.html] + expected: + if (os == "linux") and fission and (processor == "x86_64"): [OK, TIMEOUT] + if (os == "android") and fission: [OK, TIMEOUT] + +[instantiate.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] diff --git a/testing/web-platform/meta/wasm/jsapi/constructor/multi-value.any.js.ini b/testing/web-platform/meta/wasm/jsapi/constructor/multi-value.any.js.ini new file mode 100644 index 0000000000..0a584fe292 --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/constructor/multi-value.any.js.ini @@ -0,0 +1,7 @@ +[multi-value.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + +[multi-value.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] diff --git a/testing/web-platform/meta/wasm/jsapi/constructor/validate.any.js.ini b/testing/web-platform/meta/wasm/jsapi/constructor/validate.any.js.ini new file mode 100644 index 0000000000..cdbfc48012 --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/constructor/validate.any.js.ini @@ -0,0 +1,7 @@ +[validate.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + +[validate.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] diff --git a/testing/web-platform/meta/wasm/jsapi/exception/constructor.tentative.any.js.ini b/testing/web-platform/meta/wasm/jsapi/exception/constructor.tentative.any.js.ini new file mode 100644 index 0000000000..2990c2671d --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/exception/constructor.tentative.any.js.ini @@ -0,0 +1,7 @@ +[constructor.tentative.any.html] + expected: + if (os == "android") and fission: [TIMEOUT, OK] + +[constructor.tentative.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] diff --git a/testing/web-platform/meta/wasm/jsapi/exception/getArg.tentative.any.js.ini b/testing/web-platform/meta/wasm/jsapi/exception/getArg.tentative.any.js.ini new file mode 100644 index 0000000000..31ef1f657c --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/exception/getArg.tentative.any.js.ini @@ -0,0 +1,17 @@ +[getArg.tentative.any.js] + [Getting out-of-range argument] + expected: FAIL + + +[getArg.tentative.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [Getting out-of-range argument] + expected: FAIL + + +[getArg.tentative.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [Getting out-of-range argument] + expected: FAIL diff --git a/testing/web-platform/meta/wasm/jsapi/exception/is.tentative.any.js.ini b/testing/web-platform/meta/wasm/jsapi/exception/is.tentative.any.js.ini new file mode 100644 index 0000000000..47e4aaed2a --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/exception/is.tentative.any.js.ini @@ -0,0 +1,7 @@ +[is.tentative.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + +[is.tentative.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] diff --git a/testing/web-platform/meta/wasm/jsapi/exception/toString.tentative.any.js.ini b/testing/web-platform/meta/wasm/jsapi/exception/toString.tentative.any.js.ini new file mode 100644 index 0000000000..ebd61f4151 --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/exception/toString.tentative.any.js.ini @@ -0,0 +1,7 @@ +[toString.tentative.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + +[toString.tentative.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] diff --git a/testing/web-platform/meta/wasm/jsapi/function/call.tentative.any.js.ini b/testing/web-platform/meta/wasm/jsapi/function/call.tentative.any.js.ini new file mode 100644 index 0000000000..8a124a3502 --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/function/call.tentative.any.js.ini @@ -0,0 +1,22 @@ +[call.tentative.any.worker.html] + [test calling function] + expected: + if release_or_beta: FAIL + [test constructing function] + expected: + if release_or_beta: FAIL +[call.tentative.any.html] + [test calling function] + expected: + if release_or_beta: FAIL + [test constructing function] + expected: + if release_or_beta: FAIL +[call.tentative.any.js] + [test calling function] + expected: + if release_or_beta: FAIL + [test constructing function] + expected: + if release_or_beta: FAIL + diff --git a/testing/web-platform/meta/wasm/jsapi/function/constructor.tentative.any.js.ini b/testing/web-platform/meta/wasm/jsapi/function/constructor.tentative.any.js.ini new file mode 100644 index 0000000000..899d864e6e --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/function/constructor.tentative.any.js.ini @@ -0,0 +1,133 @@ +[constructor.tentative.any.worker.html] + [name] + expected: + if release_or_beta: FAIL + + [Too few arguments] + expected: + if release_or_beta: FAIL + + [Calling] + expected: + if release_or_beta: FAIL + + [construct with JS function] + expected: + if release_or_beta: FAIL + + [fail with missing parameters] + expected: + if release_or_beta: FAIL + + [fail with missing results] + expected: + if release_or_beta: FAIL + + [fail with non-string parameters & results] + expected: + if release_or_beta: FAIL + + [fail with non-existent parameter and result type] + expected: + if release_or_beta: FAIL + + [fail with non-function object] + expected: + if release_or_beta: FAIL + + [fail to construct with non-callable object] + expected: + if release_or_beta: FAIL + + [length] + expected: FAIL + + +[constructor.tentative.any.html] + [name] + expected: + if release_or_beta: FAIL + + [Too few arguments] + expected: + if release_or_beta: FAIL + + [Calling] + expected: + if release_or_beta: FAIL + + [construct with JS function] + expected: + if release_or_beta: FAIL + + [fail with missing parameters] + expected: + if release_or_beta: FAIL + + [fail with missing results] + expected: + if release_or_beta: FAIL + + [fail with non-string parameters & results] + expected: + if release_or_beta: FAIL + + [fail with non-existent parameter and result type] + expected: + if release_or_beta: FAIL + + [fail with non-function object] + expected: + if release_or_beta: FAIL + + [fail to construct with non-callable object] + expected: + if release_or_beta: FAIL + + [length] + expected: FAIL + + +[constructor.tentative.any.js] + [name] + expected: + if release_or_beta: FAIL + + [Too few arguments] + expected: + if release_or_beta: FAIL + + [Calling] + expected: + if release_or_beta: FAIL + + [construct with JS function] + expected: + if release_or_beta: FAIL + + [fail with missing parameters] + expected: + if release_or_beta: FAIL + + [fail with missing results] + expected: + if release_or_beta: FAIL + + [fail with non-string parameters & results] + expected: + if release_or_beta: FAIL + + [fail with non-existent parameter and result type] + expected: + if release_or_beta: FAIL + + [fail with non-function object] + expected: + if release_or_beta: FAIL + + [fail to construct with non-callable object] + expected: + if release_or_beta: FAIL + + [length] + expected: FAIL diff --git a/testing/web-platform/meta/wasm/jsapi/function/table.tentative.any.js.ini b/testing/web-platform/meta/wasm/jsapi/function/table.tentative.any.js.ini new file mode 100644 index 0000000000..87de94cd94 --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/function/table.tentative.any.js.ini @@ -0,0 +1,20 @@ +[table.tentative.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [Test insertion into table] + expected: + if release_or_beta: FAIL + + +[table.tentative.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [Test insertion into table] + expected: + if release_or_beta: FAIL + + +[table.tentative.any.js] + [Test insertion into table] + expected: + if release_or_beta: FAIL diff --git a/testing/web-platform/meta/wasm/jsapi/function/type.tentative.any.js.ini b/testing/web-platform/meta/wasm/jsapi/function/type.tentative.any.js.ini new file mode 100644 index 0000000000..9226439454 --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/function/type.tentative.any.js.ini @@ -0,0 +1,32 @@ +[type.tentative.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [Check empty results and parameters] + expected: + if release_or_beta: FAIL + + [Check all types] + expected: + if release_or_beta: FAIL + + +[type.tentative.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [Check empty results and parameters] + expected: + if release_or_beta: FAIL + + [Check all types] + expected: + if release_or_beta: FAIL + + +[type.tentative.any.js] + [Check empty results and parameters] + expected: + if release_or_beta: FAIL + + [Check all types] + expected: + if release_or_beta: FAIL diff --git a/testing/web-platform/meta/wasm/jsapi/functions/entry-different-function-realm.html.ini b/testing/web-platform/meta/wasm/jsapi/functions/entry-different-function-realm.html.ini new file mode 100644 index 0000000000..fa6e746f4c --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/functions/entry-different-function-realm.html.ini @@ -0,0 +1,4 @@ +[entry-different-function-realm.html] + [Start function] + expected: FAIL + diff --git a/testing/web-platform/meta/wasm/jsapi/functions/entry.html.ini b/testing/web-platform/meta/wasm/jsapi/functions/entry.html.ini new file mode 100644 index 0000000000..5dfa54f36a --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/functions/entry.html.ini @@ -0,0 +1,4 @@ +[entry.html] + [Start function] + expected: FAIL + diff --git a/testing/web-platform/meta/wasm/jsapi/functions/incumbent.html.ini b/testing/web-platform/meta/wasm/jsapi/functions/incumbent.html.ini new file mode 100644 index 0000000000..5bbf556dda --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/functions/incumbent.html.ini @@ -0,0 +1,3 @@ +[incumbent.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] diff --git a/testing/web-platform/meta/wasm/jsapi/global/toString.any.js.ini b/testing/web-platform/meta/wasm/jsapi/global/toString.any.js.ini new file mode 100644 index 0000000000..b04c383a6a --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/global/toString.any.js.ini @@ -0,0 +1,5 @@ +[toString.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + +[toString.any.html] diff --git a/testing/web-platform/meta/wasm/jsapi/global/type.tentative.any.js.ini b/testing/web-platform/meta/wasm/jsapi/global/type.tentative.any.js.ini new file mode 100644 index 0000000000..5aaf12c41d --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/global/type.tentative.any.js.ini @@ -0,0 +1,164 @@ +[type.tentative.any.js] + [i32, mutable] + expected: + if release_or_beta: FAIL + + [i32, immutable] + expected: + if release_or_beta: FAIL + + [i64, mutable] + expected: + if release_or_beta: FAIL + + [i64, immutable] + expected: + if release_or_beta: FAIL + + [f32, mutable] + expected: + if release_or_beta: FAIL + + [f32, immutable] + expected: + if release_or_beta: FAIL + + [f64, mutable] + expected: + if release_or_beta: FAIL + + [f64, immutable] + expected: + if release_or_beta: FAIL + + [externref, mutable] + expected: + if release_or_beta: FAIL + + [externref, immutable] + expected: + if release_or_beta: FAIL + + [funcref, mutable] + expected: + if release_or_beta: FAIL + + [funcref, immutable] + expected: + if release_or_beta: FAIL + + [key ordering] + expected: + if release_or_beta: FAIL + + +[type.tentative.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [i32, mutable] + expected: + if release_or_beta: FAIL + + [i32, immutable] + expected: + if release_or_beta: FAIL + + [i64, mutable] + expected: + if release_or_beta: FAIL + + [i64, immutable] + expected: + if release_or_beta: FAIL + + [f32, mutable] + expected: + if release_or_beta: FAIL + + [f32, immutable] + expected: + if release_or_beta: FAIL + + [f64, mutable] + expected: + if release_or_beta: FAIL + + [f64, immutable] + expected: + if release_or_beta: FAIL + + [externref, mutable] + expected: + if release_or_beta: FAIL + + [externref, immutable] + expected: + if release_or_beta: FAIL + + [funcref, mutable] + expected: + if release_or_beta: FAIL + + [funcref, immutable] + expected: + if release_or_beta: FAIL + + [key ordering] + expected: + if release_or_beta: FAIL + + +[type.tentative.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [i32, mutable] + expected: + if release_or_beta: FAIL + + [i32, immutable] + expected: + if release_or_beta: FAIL + + [i64, mutable] + expected: + if release_or_beta: FAIL + + [i64, immutable] + expected: + if release_or_beta: FAIL + + [f32, mutable] + expected: + if release_or_beta: FAIL + + [f32, immutable] + expected: + if release_or_beta: FAIL + + [f64, mutable] + expected: + if release_or_beta: FAIL + + [f64, immutable] + expected: + if release_or_beta: FAIL + + [externref, mutable] + expected: + if release_or_beta: FAIL + + [externref, immutable] + expected: + if release_or_beta: FAIL + + [funcref, mutable] + expected: + if release_or_beta: FAIL + + [funcref, immutable] + expected: + if release_or_beta: FAIL + + [key ordering] + expected: + if release_or_beta: FAIL diff --git a/testing/web-platform/meta/wasm/jsapi/global/value-get-set.any.js.ini b/testing/web-platform/meta/wasm/jsapi/global/value-get-set.any.js.ini new file mode 100644 index 0000000000..39fd593694 --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/global/value-get-set.any.js.ini @@ -0,0 +1,7 @@ +[value-get-set.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + +[value-get-set.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] diff --git a/testing/web-platform/meta/wasm/jsapi/global/valueOf.any.js.ini b/testing/web-platform/meta/wasm/jsapi/global/valueOf.any.js.ini new file mode 100644 index 0000000000..d94109ca2b --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/global/valueOf.any.js.ini @@ -0,0 +1,7 @@ +[valueOf.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + +[valueOf.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] diff --git a/testing/web-platform/meta/wasm/jsapi/idlharness.any.js.ini b/testing/web-platform/meta/wasm/jsapi/idlharness.any.js.ini new file mode 100644 index 0000000000..ac4113f3e2 --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/idlharness.any.js.ini @@ -0,0 +1,9 @@ +[idlharness.any.html] + [Table interface: operation set(unsigned long, optional any)] + expected: FAIL + + +[idlharness.any.worker.html] + [Table interface: operation set(unsigned long, optional any)] + expected: FAIL + diff --git a/testing/web-platform/meta/wasm/jsapi/instance/__dir__.ini b/testing/web-platform/meta/wasm/jsapi/instance/__dir__.ini new file mode 100644 index 0000000000..daf68383df --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/instance/__dir__.ini @@ -0,0 +1 @@ +leak-threshold: [default:51200] diff --git a/testing/web-platform/meta/wasm/jsapi/instance/constructor-caching.any.js.ini b/testing/web-platform/meta/wasm/jsapi/instance/constructor-caching.any.js.ini new file mode 100644 index 0000000000..0ff34af7fa --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/instance/constructor-caching.any.js.ini @@ -0,0 +1,5 @@ +[constructor-caching.any.worker.html] + +[constructor-caching.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] diff --git a/testing/web-platform/meta/wasm/jsapi/instance/constructor.any.js.ini b/testing/web-platform/meta/wasm/jsapi/instance/constructor.any.js.ini new file mode 100644 index 0000000000..fae9af92b8 --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/instance/constructor.any.js.ini @@ -0,0 +1,7 @@ +[constructor.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + +[constructor.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] diff --git a/testing/web-platform/meta/wasm/jsapi/instance/exports.any.js.ini b/testing/web-platform/meta/wasm/jsapi/instance/exports.any.js.ini new file mode 100644 index 0000000000..a7cd1dad68 --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/instance/exports.any.js.ini @@ -0,0 +1,7 @@ +[exports.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + +[exports.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] diff --git a/testing/web-platform/meta/wasm/jsapi/instance/toString.any.js.ini b/testing/web-platform/meta/wasm/jsapi/instance/toString.any.js.ini new file mode 100644 index 0000000000..dfc0f75a13 --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/instance/toString.any.js.ini @@ -0,0 +1,7 @@ +[toString.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + +[toString.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] diff --git a/testing/web-platform/meta/wasm/jsapi/interface.any.js.ini b/testing/web-platform/meta/wasm/jsapi/interface.any.js.ini new file mode 100644 index 0000000000..4039aade71 --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/interface.any.js.ini @@ -0,0 +1,17 @@ +[interface.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [WebAssembly.Table.set: length] + expected: FAIL + + +[interface.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [WebAssembly.Table.set: length] + expected: FAIL + + +[interface.any.js] + [WebAssembly.Table.set: length] + expected: FAIL diff --git a/testing/web-platform/meta/wasm/jsapi/memory/constructor-shared.tentative.any.js.ini b/testing/web-platform/meta/wasm/jsapi/memory/constructor-shared.tentative.any.js.ini new file mode 100644 index 0000000000..284194ed21 --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/memory/constructor-shared.tentative.any.js.ini @@ -0,0 +1,14 @@ +[constructor-shared.tentative.any.worker.html] + [Shared memory] + expected: FAIL + + +[constructor-shared.tentative.any.html] + [Shared memory] + expected: FAIL + + +[constructor-shared.tentative.any.js] + [Shared memory] + expected: FAIL + diff --git a/testing/web-platform/meta/wasm/jsapi/memory/constructor-types.tentative.any.js.ini b/testing/web-platform/meta/wasm/jsapi/memory/constructor-types.tentative.any.js.ini new file mode 100644 index 0000000000..41bd195782 --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/memory/constructor-types.tentative.any.js.ini @@ -0,0 +1,44 @@ +[constructor-types.tentative.any.worker.html] + expected: + if (os == "android") and fission: [TIMEOUT, OK] + [Initializing with both initial and minimum] + expected: + if release_or_beta: FAIL + + [Zero minimum] + expected: + if release_or_beta: FAIL + + [Non-zero minimum] + expected: + if release_or_beta: FAIL + + +[constructor-types.tentative.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [Initializing with both initial and minimum] + expected: + if release_or_beta: FAIL + + [Zero minimum] + expected: + if release_or_beta: FAIL + + [Non-zero minimum] + expected: + if release_or_beta: FAIL + + +[constructor-types.tentative.any.js] + [Initializing with both initial and minimum] + expected: + if release_or_beta: FAIL + + [Zero minimum] + expected: + if release_or_beta: FAIL + + [Non-zero minimum] + expected: + if release_or_beta: FAIL diff --git a/testing/web-platform/meta/wasm/jsapi/memory/constructor.any.js.ini b/testing/web-platform/meta/wasm/jsapi/memory/constructor.any.js.ini new file mode 100644 index 0000000000..51629c54f5 --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/memory/constructor.any.js.ini @@ -0,0 +1,20 @@ +[constructor.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [Order of evaluation for descriptor (with shared)] + expected: + if not early_beta_or_earlier: FAIL + + +[constructor.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [Order of evaluation for descriptor (with shared)] + expected: + if not early_beta_or_earlier: FAIL + + +[constructor.any.js] + [Order of evaluation for descriptor (with shared)] + expected: + if not early_beta_or_earlier: FAIL diff --git a/testing/web-platform/meta/wasm/jsapi/memory/grow.any.js.ini b/testing/web-platform/meta/wasm/jsapi/memory/grow.any.js.ini new file mode 100644 index 0000000000..7780089629 --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/memory/grow.any.js.ini @@ -0,0 +1,17 @@ +[grow.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [Growing shared memory does not detach old buffer] + expected: FAIL + + +[grow.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [Growing shared memory does not detach old buffer] + expected: FAIL + + +[grow.any.js] + [Growing shared memory does not detach old buffer] + expected: FAIL diff --git a/testing/web-platform/meta/wasm/jsapi/memory/toString.any.js.ini b/testing/web-platform/meta/wasm/jsapi/memory/toString.any.js.ini new file mode 100644 index 0000000000..88148e7338 --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/memory/toString.any.js.ini @@ -0,0 +1,7 @@ +[toString.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + +[toString.any.worker.html] + expected: + if (os == "android") and fission: [TIMEOUT, OK] diff --git a/testing/web-platform/meta/wasm/jsapi/memory/type.tentative.any.js.ini b/testing/web-platform/meta/wasm/jsapi/memory/type.tentative.any.js.ini new file mode 100644 index 0000000000..c3e2ba507e --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/memory/type.tentative.any.js.ini @@ -0,0 +1,80 @@ +[type.tentative.any.js] + [Zero initial, no maximum] + expected: + if release_or_beta: FAIL + + [Non-zero initial, no maximum] + expected: + if release_or_beta: FAIL + + [Zero maximum] + expected: + if release_or_beta: FAIL + + [None-zero maximum] + expected: + if release_or_beta: FAIL + + [non-shared memory] + expected: + if release_or_beta: FAIL + + [shared memory] + expected: + if release_or_beta: FAIL + + +[type.tentative.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [Zero initial, no maximum] + expected: + if release_or_beta: FAIL + + [Non-zero initial, no maximum] + expected: + if release_or_beta: FAIL + + [Zero maximum] + expected: + if release_or_beta: FAIL + + [None-zero maximum] + expected: + if release_or_beta: FAIL + + [non-shared memory] + expected: + if release_or_beta: FAIL + + [shared memory] + expected: + if release_or_beta: FAIL + + +[type.tentative.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [Zero initial, no maximum] + expected: + if release_or_beta: FAIL + + [Non-zero initial, no maximum] + expected: + if release_or_beta: FAIL + + [Zero maximum] + expected: + if release_or_beta: FAIL + + [None-zero maximum] + expected: + if release_or_beta: FAIL + + [non-shared memory] + expected: + if release_or_beta: FAIL + + [shared memory] + expected: + if release_or_beta: FAIL diff --git a/testing/web-platform/meta/wasm/jsapi/module/customSections.any.js.ini b/testing/web-platform/meta/wasm/jsapi/module/customSections.any.js.ini new file mode 100644 index 0000000000..01e227e8d8 --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/module/customSections.any.js.ini @@ -0,0 +1,14 @@ +[customSections.any.html] + [Custom sections with U+FFFD] + expected: FAIL + + +[customSections.any.worker.html] + [Custom sections with U+FFFD] + expected: FAIL + + +[customSections.any.js] + [Custom sections with U+FFFD] + expected: FAIL + diff --git a/testing/web-platform/meta/wasm/jsapi/module/exports.any.js.ini b/testing/web-platform/meta/wasm/jsapi/module/exports.any.js.ini new file mode 100644 index 0000000000..8ca76b1fed --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/module/exports.any.js.ini @@ -0,0 +1,7 @@ +[exports.any.worker.html] + expected: + if (os == "android") and fission: [TIMEOUT, OK] + +[exports.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] diff --git a/testing/web-platform/meta/wasm/jsapi/module/imports.any.js.ini b/testing/web-platform/meta/wasm/jsapi/module/imports.any.js.ini new file mode 100644 index 0000000000..cb73007bc3 --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/module/imports.any.js.ini @@ -0,0 +1,7 @@ +[imports.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + +[imports.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] diff --git a/testing/web-platform/meta/wasm/jsapi/module/toString.any.js.ini b/testing/web-platform/meta/wasm/jsapi/module/toString.any.js.ini new file mode 100644 index 0000000000..5318d67c62 --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/module/toString.any.js.ini @@ -0,0 +1,7 @@ +[toString.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + +[toString.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] diff --git a/testing/web-platform/meta/wasm/jsapi/proto-from-ctor-realm.html.ini b/testing/web-platform/meta/wasm/jsapi/proto-from-ctor-realm.html.ini new file mode 100644 index 0000000000..3a606c53fe --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/proto-from-ctor-realm.html.ini @@ -0,0 +1,3 @@ +[proto-from-ctor-realm.html] + expected: + if (os == "android") and fission: [TIMEOUT, OK] diff --git a/testing/web-platform/meta/wasm/jsapi/prototypes.any.js.ini b/testing/web-platform/meta/wasm/jsapi/prototypes.any.js.ini new file mode 100644 index 0000000000..6c1377d130 --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/prototypes.any.js.ini @@ -0,0 +1,7 @@ +[prototypes.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + +[prototypes.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] diff --git a/testing/web-platform/meta/wasm/jsapi/table/__dir__.ini b/testing/web-platform/meta/wasm/jsapi/table/__dir__.ini new file mode 100644 index 0000000000..d5661f0dcc --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/table/__dir__.ini @@ -0,0 +1 @@ +lsan-allowed: [Alloc, MakeUnique, Realloc, XPCNativeInterface::NewInstance, XPCNativeSet::NewInstance, XPCNativeSet::NewInstanceMutate, XPCWrappedNative::GetNewOrUsed, XPCWrappedNativeProto::GetNewOrUsed, mozilla::extensions::AtomSet::Get, mozilla::extensions::MatchPattern::Constructor, mozilla::extensions::MatchPattern::Init] diff --git a/testing/web-platform/meta/wasm/jsapi/table/constructor-types.tentative.any.js.ini b/testing/web-platform/meta/wasm/jsapi/table/constructor-types.tentative.any.js.ini new file mode 100644 index 0000000000..3037c82b71 --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/table/constructor-types.tentative.any.js.ini @@ -0,0 +1,32 @@ +[constructor-types.tentative.any.worker.html] + [Initializing with both initial and minimum] + expected: + if release_or_beta: FAIL + [Zero minimum] + expected: + if release_or_beta: FAIL + [Non-zero minimum] + expected: + if release_or_beta: FAIL + +[constructor-types.tentative.any.html] + [Initializing with both initial and minimum] + expected: + if release_or_beta: FAIL + [Zero minimum] + expected: + if release_or_beta: FAIL + [Non-zero minimum] + expected: + if release_or_beta: FAIL + +[constructor-types.tentative.any.js] + [Initializing with both initial and minimum] + expected: + if release_or_beta: FAIL + [Zero minimum] + expected: + if release_or_beta: FAIL + [Non-zero minimum] + expected: + if release_or_beta: FAIL \ No newline at end of file diff --git a/testing/web-platform/meta/wasm/jsapi/table/get-set.any.js.ini b/testing/web-platform/meta/wasm/jsapi/table/get-set.any.js.ini new file mode 100644 index 0000000000..752aff3684 --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/table/get-set.any.js.ini @@ -0,0 +1,7 @@ +[get-set.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + +[get-set.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] diff --git a/testing/web-platform/meta/wasm/jsapi/table/grow.any.js.ini b/testing/web-platform/meta/wasm/jsapi/table/grow.any.js.ini new file mode 100644 index 0000000000..f70b4b1f75 --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/table/grow.any.js.ini @@ -0,0 +1,7 @@ +[grow.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + +[grow.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] diff --git a/testing/web-platform/meta/wasm/jsapi/table/length.any.js.ini b/testing/web-platform/meta/wasm/jsapi/table/length.any.js.ini new file mode 100644 index 0000000000..0cb08f7d99 --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/table/length.any.js.ini @@ -0,0 +1,7 @@ +[length.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + +[length.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] diff --git a/testing/web-platform/meta/wasm/jsapi/table/toString.any.js.ini b/testing/web-platform/meta/wasm/jsapi/table/toString.any.js.ini new file mode 100644 index 0000000000..dfc0f75a13 --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/table/toString.any.js.ini @@ -0,0 +1,7 @@ +[toString.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + +[toString.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] diff --git a/testing/web-platform/meta/wasm/jsapi/table/type.tentative.any.js.ini b/testing/web-platform/meta/wasm/jsapi/table/type.tentative.any.js.ini new file mode 100644 index 0000000000..7a2d4a1f65 --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/table/type.tentative.any.js.ini @@ -0,0 +1,56 @@ +[type.tentative.any.js] + [Zero initial, no maximum] + expected: + if release_or_beta: FAIL + + [Non-zero initial, no maximum] + expected: + if release_or_beta: FAIL + + [Zero maximum] + expected: + if release_or_beta: FAIL + + [Non-zero maximum] + expected: + if release_or_beta: FAIL + + +[type.tentative.any.worker.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [Zero initial, no maximum] + expected: + if release_or_beta: FAIL + + [Non-zero initial, no maximum] + expected: + if release_or_beta: FAIL + + [Zero maximum] + expected: + if release_or_beta: FAIL + + [Non-zero maximum] + expected: + if release_or_beta: FAIL + + +[type.tentative.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [Zero initial, no maximum] + expected: + if release_or_beta: FAIL + + [Non-zero initial, no maximum] + expected: + if release_or_beta: FAIL + + [Zero maximum] + expected: + if release_or_beta: FAIL + + [Non-zero maximum] + expected: + if release_or_beta: FAIL diff --git a/testing/web-platform/meta/wasm/jsapi/tag/type.tentative.any.js.ini b/testing/web-platform/meta/wasm/jsapi/tag/type.tentative.any.js.ini new file mode 100644 index 0000000000..35b2e54103 --- /dev/null +++ b/testing/web-platform/meta/wasm/jsapi/tag/type.tentative.any.js.ini @@ -0,0 +1,44 @@ +[type.tentative.any.worker.html] + expected: + if (os == "android") and fission: [TIMEOUT, OK] + [[\]] + expected: + if release_or_beta: FAIL + + [[i32 i64\]] + expected: + if release_or_beta: FAIL + + [[i32 i64 f32 f64\]] + expected: + if release_or_beta: FAIL + + +[type.tentative.any.html] + expected: + if (os == "android") and fission: [OK, TIMEOUT] + [[\]] + expected: + if release_or_beta: FAIL + + [[i32 i64\]] + expected: + if release_or_beta: FAIL + + [[i32 i64 f32 f64\]] + expected: + if release_or_beta: FAIL + + +[type.tentative.any.js] + [[\]] + expected: + if release_or_beta: FAIL + + [[i32 i64\]] + expected: + if release_or_beta: FAIL + + [[i32 i64 f32 f64\]] + expected: + if release_or_beta: FAIL -- cgit v1.2.3