summaryrefslogtreecommitdiff
path: root/test/run-tests.py
diff options
context:
space:
mode:
authorSoni L <EnderMoneyMod@gmail.com>2023-11-12 15:02:35 -0300
committerGitHub <noreply@github.com>2023-11-12 10:02:35 -0800
commitb1c039bdf784db8d5e5027dfbe6eefb2dc86ec12 (patch)
tree2ea29dabf53e9751025c6a7b78304cca5deffad3 /test/run-tests.py
parente97d53c5fcbb604fc36432df4fc117d13558d7fd (diff)
downloadwabt-b1c039bdf784db8d5e5027dfbe6eefb2dc86ec12.tar.gz
wabt-b1c039bdf784db8d5e5027dfbe6eefb2dc86ec12.tar.bz2
wabt-b1c039bdf784db8d5e5027dfbe6eefb2dc86ec12.zip
Clean up WABT_BIG_ENDIAN handling in tests (#2326)
Diffstat (limited to 'test/run-tests.py')
-rwxr-xr-xtest/run-tests.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/test/run-tests.py b/test/run-tests.py
index 370f75ef..80ed189d 100755
--- a/test/run-tests.py
+++ b/test/run-tests.py
@@ -39,11 +39,6 @@ OUT_DIR = os.path.join(REPO_ROOT_DIR, 'out')
DEFAULT_TIMEOUT = 120 # seconds
SLOW_TIMEOUT_MULTIPLIER = 3
-if sys.byteorder == 'big':
- wasm2c_args = ['--cflags=-DWABT_BIG_ENDIAN=1']
-else:
- wasm2c_args = []
-
# default configurations for tests
TOOLS = {
'wat2wasm': [
@@ -152,7 +147,7 @@ TOOLS = {
'--no-error-cmdline',
'-o',
'%(out_dir)s',
- ] + wasm2c_args),
+ ]),
('VERBOSE-ARGS', ['--print-cmd', '-v']),
],
'run-wasm2c': [