Skip to content

Commit 8e0a79d

Browse files
test: Skip some exhaustive tests for now due to WasmKit performance
Those tests check so many input variations and take too long (hours) to run. We can re-enable them once WasmKit is well optimized.
1 parent 1d3e939 commit 8e0a79d

File tree

1 file changed

+6
-1
lines changed
  • utils/swift_build_support/swift_build_support/products

1 file changed

+6
-1
lines changed

utils/swift_build_support/swift_build_support/products/wasmstdlib.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,12 @@ def test(self, host_target):
135135
test_target = "check-swift-wasi-wasm32-custom"
136136
bin_paths = [os.path.dirname(wasmkit_bin_path)] + bin_paths
137137

138-
env = {'PATH': os.path.pathsep.join(bin_paths)}
138+
env = {
139+
'PATH': os.path.pathsep.join(bin_paths),
140+
# FIXME: WasmKit takes too long to run these exhaustive tests for now
141+
'LIT_FILTER_OUT':
142+
'(Concurrency/Runtime/clock.swift|stdlib/StringIndex.swift)',
143+
}
139144
self.test_with_cmake(None, [test_target], self._build_variant, [], test_env=env)
140145

141146
@property

0 commit comments

Comments
 (0)