Make android.check work
authorjkummerow@chromium.org <jkummerow@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Mon, 16 Jul 2012 16:22:28 +0000 (16:22 +0000)
committerjkummerow@chromium.org <jkummerow@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Mon, 16 Jul 2012 16:22:28 +0000 (16:22 +0000)
Review URL: https://chromiumcodereview.appspot.com/10779011
Patch from Haitao Feng <haitao.feng@intel.com>.

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@12101 ce2b1a6d-e550-0410-aec6-3dcde31c8c00

AUTHORS
tools/android-run.py

diff --git a/AUTHORS b/AUTHORS
index 6e46b3d..e7b08f2 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -24,6 +24,7 @@ Dineel D Sule <dsule@codeaurora.org>
 Erich Ocean <erich.ocean@me.com>
 Fedor Indutny <fedor@indutny.com>
 Filipe David Manana <fdmanana@gmail.com>
+Haitao Feng <haitao.feng@intel.com>
 Ioseb Dzmanashvili <ioseb.dzmanashvili@gmail.com>
 Jan de Mooij <jandemooij@gmail.com>
 Jay Freeman <saurik@saurik.com>
index 881630a..d3969a2 100755 (executable)
@@ -91,9 +91,10 @@ def Main():
   android_workspace = os.getenv("ANDROID_V8", "/data/local/v8")
   args = [Escape(arg) for arg in sys.argv[1:]]
   script = (" ".join(args) + "\n"
-            "if [ $? -ne 0 ]\n"
-            "  then echo \"Error returned by test\";\n"
-            "fi\n")
+            "case $? in\n"
+            "  0) break;;\n"
+            "  *) echo \"Error returned by test\";;\n"
+            "esac\n")
   script = script.replace(workspace, android_workspace)
   script_file = WriteToTemporaryFile(script)
   android_script_file = android_workspace + "/" + script_file