From 5e36dd8aec06cb59b2aee0eb1370e07f64ef5c61 Mon Sep 17 00:00:00 2001 From: Daniel Erat Date: Tue, 12 Jan 2010 10:31:14 -0800 Subject: [PATCH] build: Get rid of manually-maintained lists of tests. BUG=chromium-os:1245 TEST=ran scripts/build_tests.sh and scripts/run_tests.sh Review URL: http://codereview.chromium.org/541020 --- run_tests.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/run_tests.sh b/run_tests.sh index b79c43a72e..7965ba162e 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -23,10 +23,8 @@ set -ex TESTS_DIR="$FLAGS_build_root/x86/tests" cd "$TESTS_DIR" -# TODO: standardize test names - should all end in "_test" so we can find -# and run them without listing them explicitly. -./pam_google_unittests -for i in *_test; do ./${i}; done +# TODO: standardize test names - should all end in "_test" +for i in *_test *_tests *_unittests; do ./${i}; done cd - echo "All tests passed."