summaryrefslogtreecommitdiff
path: root/deps/v8/test/inspector/testcfg.py
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/inspector/testcfg.py')
-rw-r--r--deps/v8/test/inspector/testcfg.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/deps/v8/test/inspector/testcfg.py b/deps/v8/test/inspector/testcfg.py
index 512bf54eb6..51a3866c52 100644
--- a/deps/v8/test/inspector/testcfg.py
+++ b/deps/v8/test/inspector/testcfg.py
@@ -10,13 +10,14 @@ from testrunner.objects import testcase
from testrunner.outproc import base as outproc
PROTOCOL_TEST_JS = "protocol-test.js"
+WASM_INSPECTOR_JS = "wasm-inspector-test.js"
EXPECTED_SUFFIX = "-expected.txt"
RESOURCES_FOLDER = "resources"
class TestLoader(testsuite.JSTestLoader):
@property
def excluded_files(self):
- return {PROTOCOL_TEST_JS}
+ return {PROTOCOL_TEST_JS, WASM_INSPECTOR_JS}
@property
def excluded_dirs(self):
@@ -56,6 +57,8 @@ class TestCase(testcase.TestCase):
return [
os.path.join(
'test', 'inspector', 'debugger', 'resources', 'break-locations.js'),
+ os.path.join(
+ 'test', 'inspector', 'wasm-inspector-test.js'),
]
@property