diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-14 00:09:50 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-14 00:09:50 +0000 |
commit | 56752149a96ff1993c806f8cd730ef4161d841ac (patch) | |
tree | 2f3f847431d59081a7cdc733a7b0f9c53dbe2be8 /mojo | |
parent | a91ff70bab417aa84a40b3fb6e2a6631b7fb5427 (diff) | |
download | chromium_src-56752149a96ff1993c806f8cd730ef4161d841ac.zip chromium_src-56752149a96ff1993c806f8cd730ef4161d841ac.tar.gz chromium_src-56752149a96ff1993c806f8cd730ef4161d841ac.tar.bz2 |
Add missing mojo_utility_unittests target to mojob.sh
Also sort the unit tests in alphabetical order so it is easier to add
new targets.
BUG=None
TEST=./mojo/tools/mojob.sh test, verifies it also runs
mojo_utility_unittests
TBR=darin@chromium.org,viettrungluu@chromium.org
NOTRY=true
Review URL: https://codereview.chromium.org/115573003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@240813 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'mojo')
-rwxr-xr-x | mojo/tools/mojob.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mojo/tools/mojob.sh b/mojo/tools/mojob.sh index 50db0ce..95de1db 100755 --- a/mojo/tools/mojob.sh +++ b/mojo/tools/mojob.sh @@ -47,11 +47,12 @@ do_build() { do_unittests() { echo "Running unit tests in out/$1 ..." - "out/$1/mojo_system_unittests" || exit 1 - "out/$1/mojo_public_unittests" || exit 1 "out/$1/mojo_bindings_unittests" || exit 1 - "out/$1/mojo_js_unittests" || exit 1 "out/$1/mojo_common_unittests" || exit 1 + "out/$1/mojo_js_unittests" || exit 1 + "out/$1/mojo_public_unittests" || exit 1 + "out/$1/mojo_system_unittests" || exit 1 + "out/$1/mojo_utility_unittests" || exit 1 } do_perftests() { |