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

Unified Diff: tools/presubmit.sh

Issue 8439006: Tweaks to get presubmit working (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Removing ia32 and replacing with vm Created 9 years, 2 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698