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:
@@ -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"]
|
||||
@@ -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 += [
|
||||
|
||||
@@ -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
|
||||
35
dom/fs/test/mochitest/mochitest.toml
Normal file
35
dom/fs/test/mochitest/mochitest.toml
Normal 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"
|
||||
@@ -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
|
||||
15
dom/fs/test/mochitest/worker/mochitest.toml
Normal file
15
dom/fs/test/mochitest/worker/mochitest.toml
Normal 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"]
|
||||
@@ -11,6 +11,6 @@ TEST_DIRS += [
|
||||
]
|
||||
|
||||
MOCHITEST_MANIFESTS += [
|
||||
"mochitest/mochitest.ini",
|
||||
"mochitest/worker/mochitest.ini",
|
||||
"mochitest/mochitest.toml",
|
||||
"mochitest/worker/mochitest.toml",
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user