Skip to content

Commit 0415481

Browse files
committed
Support x86 and wasm_x86 testing in integration_tests/run_tests_new.py
1 parent 2829ef4 commit 0415481

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

ci/test.xsh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,6 @@ if $WIN != "1":
1919
python run_tests.py
2020
cd integration_tests
2121
python run_tests_new.py -j16 -b llvm cpython c wasm
22+
23+
if $(uname).strip() == "Linux":
24+
python run_tests_new.py -j16 -b x86 wasm_x86

integration_tests/run_tests_new.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Initialization
88
DEFAULT_THREADS_TO_USE = 8 # default no of threads is 8
9-
SUPPORTED_BACKENDS = ['llvm', 'c', 'wasm', 'cpython']
9+
SUPPORTED_BACKENDS = ['llvm', 'c', 'wasm', 'cpython', 'x86', 'wasm_x86']
1010
BASE_DIR = os.path.dirname(os.path.realpath(__file__))
1111
LPYTHON_PATH = f"{BASE_DIR}/../src/bin"
1212

0 commit comments

Comments
 (0)