Chromium Code Reviews| Index: tools/presubmit.sh |
| diff --git a/tools/presubmit.sh b/tools/presubmit.sh |
| index da0fadaf158c2893bf2d40f736cef2ef91c9efbc..6adaf572cf881365a6584b09528e5735915d86e5 100755 |
| --- a/tools/presubmit.sh |
| +++ b/tools/presubmit.sh |
| @@ -45,7 +45,7 @@ function doBuild { |
| # $3 mode |
| # Returns the output from the subcommand |
| function doTest { |
| - ./tools/test.py --arch $2 --mode $3 |
| + ./tools/test.py --component $2 --mode $3 |
|
codefu
2011/11/01 18:21:11
Less change.
|
| RESULT=$? |
| if [ ${RESULT} != 0 ] ; then |
| TESTS_FAILED=1 |
| @@ -95,11 +95,11 @@ doBuild ia32 debug |
| echo |
| echo "=== Runtime tests === " |
| echo " Debug (Ctrl-C to skip this set of tests)" |
| -doTest runtime ia32 debug |
| +doTest runtime vm debug |
| RUNTIME_RESULT=$? |
| if [ ${RUNTIME_RESULT} == 0 ] ; then |
| echo " Release (Ctrl-C to skip this set of tests)" |
| - doTest runtime ia32 release |
| + doTest runtime vm release |
| RUNTIME_RESULT=$? |
| fi |