| 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."
|
|
|