diff options
author | Soni L <EnderMoneyMod@gmail.com> | 2023-11-12 15:02:35 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-12 10:02:35 -0800 |
commit | b1c039bdf784db8d5e5027dfbe6eefb2dc86ec12 (patch) | |
tree | 2ea29dabf53e9751025c6a7b78304cca5deffad3 /test/run-tests.py | |
parent | e97d53c5fcbb604fc36432df4fc117d13558d7fd (diff) | |
download | wabt-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-x | test/run-tests.py | 7 |
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': [ |