Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1165)

Unified Diff: src/scripts/run_tests.sh

Issue 541020: build: Get rid of manually-maintained lists of tests. (Closed)
Patch Set: Created 10 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/platform/window_manager/make_tests.sh ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/scripts/run_tests.sh
diff --git a/src/scripts/run_tests.sh b/src/scripts/run_tests.sh
index b79c43a72ef2db59cfe8eb20ed71d00d13d625fe..7965ba162ed92a8fec8c97d4d0ce0f13d6d6d708 100755
--- a/src/scripts/run_tests.sh
+++ b/src/scripts/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."
« no previous file with comments | « src/platform/window_manager/make_tests.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698