From 74b2b064e59beee84e88afaa952a8c51cf9309a4 Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Thu, 19 Dec 2024 16:37:49 -0800 Subject: [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. --- scripts/test/shared.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'scripts/test/shared.py') 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 -- cgit v1.2.3