summaryrefslogtreecommitdiff
path: root/scripts/test/shared.py
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2024-12-19 16:37:49 -0800
committerGitHub <noreply@github.com>2024-12-19 16:37:49 -0800
commit74b2b064e59beee84e88afaa952a8c51cf9309a4 (patch)
treed66b5c03d77a0237040245f892fc1e3c693d7a03 /scripts/test/shared.py
parent4e1ae4aa5815fb474c829d15d7c93abee0ce14e3 (diff)
downloadbinaryen-74b2b064e59beee84e88afaa952a8c51cf9309a4.tar.gz
binaryen-74b2b064e59beee84e88afaa952a8c51cf9309a4.tar.bz2
binaryen-74b2b064e59beee84e88afaa952a8c51cf9309a4.zip
[NFC] Move code from fuzz_opt.py to a shared place (#7165)
The list of tests, and which tests cannot be fuzzed, will be useful in a future PR that uses it for ClusterFuzz as well. This just moves things out so they are reusable.
Diffstat (limited to 'scripts/test/shared.py')
-rw-r--r--scripts/test/shared.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/scripts/test/shared.py b/scripts/test/shared.py
index 8797f50b2..e0a51a73a 100644
--- a/scripts/test/shared.py
+++ b/scripts/test/shared.py
@@ -561,3 +561,19 @@ def skip_if_on_windows(name):
print('skipping test "%s" on windows' % name)
return True
return False
+
+
+test_suffixes = ['*.wasm', '*.wast', '*.wat']
+
+
+# return a list of all the tests in the entire test suite
+def get_all_tests():
+ core_tests = get_tests(get_test_dir('.'), test_suffixes)
+ passes_tests = get_tests(get_test_dir('passes'), test_suffixes)
+ spec_tests = get_tests(get_test_dir('spec'), test_suffixes)
+ wasm2js_tests = get_tests(get_test_dir('wasm2js'), test_suffixes)
+ lld_tests = get_tests(get_test_dir('lld'), test_suffixes)
+ unit_tests = get_tests(get_test_dir(os.path.join('unit', 'input')), test_suffixes)
+ lit_tests = get_tests(get_test_dir('lit'), test_suffixes, recursive=True)
+
+ return core_tests + passes_tests + spec_tests + wasm2js_tests + lld_tests + unit_tests + lit_tests