Bug 1855295 convert .ini manifests to .toml: batch 8 dom/[a-l]**/mochitest.ini r=jmaher,jgilbert,extension-reviewers,credential-management-reviewers,robwu,sgalich

Differential Revision: https://phabricator.services.mozilla.com/D189381
This commit is contained in:
Tom Marble
2023-10-02 17:18:28 +00:00
parent f6eb2eac2a
commit c47238b5ac
131 changed files with 6475 additions and 4328 deletions

View File

@@ -3,12 +3,13 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
[DEFAULT]
support-files =
nsresult.js
test_basics.js
test_fileSystemDirectoryHandle.js
test_syncAccessHandle.js
test_writableFileStream.js
support-files = [
"nsresult.js",
"test_basics.js",
"test_fileSystemDirectoryHandle.js",
"test_syncAccessHandle.js",
"test_writableFileStream.js",
]
[dummy.js]
skip-if = true
["dummy.js"]
skip-if = ["true"]

View File

@@ -5,7 +5,7 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
MOCHITEST_MANIFESTS += [
"mochitest.ini",
"mochitest.toml",
]
XPCSHELL_TESTS_MANIFESTS += [

View File

@@ -1,28 +0,0 @@
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
[DEFAULT]
skip-if = xorigin
support-files =
head.js
# Skip all tests if xorigin since we'll fail GetStorage() with ePartitionForeignOrDeny
[test_basics.html]
scheme=https
skip-if =
os == "win" # Bug 1841281
os == "linux" && debug # Bug 1841281
os == "mac" && debug # Bug 1841281
[test_basics_worker.html]
scheme=https
[test_fileSystemDirectoryHandle.html]
scheme=https
[test_fileSystemDirectoryHandle_worker.html]
scheme=https
[test_syncAccessHandle_worker.html]
scheme=https
[test_writableFileStream.html]
scheme=https
[test_writableFileStream_worker.html]
scheme=https

View File

@@ -0,0 +1,35 @@
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
[DEFAULT]
skip-if = ["xorigin"]
support-files = ["head.js"]
# Skip all tests if xorigin since we'll fail GetStorage() with ePartitionForeignOrDeny
["test_basics.html"]
scheme = "https"
skip-if = [
"os == 'win'", # Bug 1841281
"os == 'linux' && debug", # Bug 1841281
"os == 'mac' && debug", # Bug 1841281
]
["test_basics_worker.html"]
scheme = "https"
["test_fileSystemDirectoryHandle.html"]
scheme = "https"
["test_fileSystemDirectoryHandle_worker.html"]
scheme = "https"
["test_syncAccessHandle_worker.html"]
scheme = "https"
["test_writableFileStream.html"]
scheme = "https"
["test_writableFileStream_worker.html"]
scheme = "https"

View File

@@ -1,14 +0,0 @@
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
[DEFAULT]
support-files =
head.js
test_basics_worker.js
test_fileSystemDirectoryHandle_worker.js
test_syncAccessHandle_worker.js
test_writableFileStream_worker.js
[dummy.js]
skip-if = true

View File

@@ -0,0 +1,15 @@
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
[DEFAULT]
support-files = [
"head.js",
"test_basics_worker.js",
"test_fileSystemDirectoryHandle_worker.js",
"test_syncAccessHandle_worker.js",
"test_writableFileStream_worker.js",
]
["dummy.js"]
skip-if = ["true"]

View File

@@ -11,6 +11,6 @@ TEST_DIRS += [
]
MOCHITEST_MANIFESTS += [
"mochitest/mochitest.ini",
"mochitest/worker/mochitest.ini",
"mochitest/mochitest.toml",
"mochitest/worker/mochitest.toml",
]