From abc7669eb7200d20173c35b6419ff7d36532ec64 Mon Sep 17 00:00:00 2001 From: Jimmy Brisson Date: Thu, 11 Aug 2016 10:03:23 -0500 Subject: [PATCH] Move find_tests to where it's has arguments --- tools/build_everything.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/build_everything.py b/tools/build_everything.py index 2685103d5e..a782dd25c3 100644 --- a/tools/build_everything.py +++ b/tools/build_everything.py @@ -147,7 +147,6 @@ if __name__ == '__main__': if not base_source_paths: base_source_paths = ['.'] - all_tests = find_tests(base_source_paths[0]) start = time() build_report = {} @@ -180,6 +179,7 @@ if __name__ == '__main__': if options.continue_on_build_fail or library_build_success: # Build all the tests + all_tests = find_tests(base_source_paths[0], target_name, toolchain_name) test_build_success, test_build = build_tests(all_tests, [build_directory], build_directory, target, target_toolchain, clean=options.clean, report=build_report,