Skip to content

Commit c496181

Browse files
committed
skip test in test-other job
1 parent b16e887 commit c496181

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.circleci/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -799,6 +799,7 @@ jobs:
799799
EMTEST_SKIP_NODE_CANARY: "1"
800800
EMTEST_SKIP_RUST: "1"
801801
EMTEST_SKIP_WASM64: "1"
802+
EMTEST_SKIP_NEW_CMAKE: "1"
802803
steps:
803804
- install-rust
804805
- run: apt-get install -q -y ninja-build scons ccache

test/test_other.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -922,6 +922,9 @@ def test_emstrip(self):
922922
'post_build': ('post_build', 'hello.js', []),
923923
})
924924
def test_cmake(self, test_dir, output_file, cmake_args):
925+
if test_dir == 'whole_archive' and 'EMTEST_SKIP_NEW_CMAKE' in os.environ:
926+
self.skipTest('EMTEST_SKIP_NEW_CMAKE set')
927+
925928
# Test all supported generators.
926929
if WINDOWS:
927930
generators = ['MinGW Makefiles', 'NMake Makefiles']

0 commit comments

Comments
 (0)