diff options
author | Elliott Hughes <enh@google.com> | 2010-03-16 17:33:15 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2010-03-16 17:33:15 -0700 |
commit | 50f3a6823c669388c5ea777ba858c14ab97842e0 (patch) | |
tree | 5cc905c39f0e4109549203b3f278bd06dca3d1c5 | |
parent | 705aafd104f0bd1a11de90afd85144de098f91c4 (diff) | |
download | libcore-50f3a6823c669388c5ea777ba858c14ab97842e0.zip libcore-50f3a6823c669388c5ea777ba858c14ab97842e0.tar.gz libcore-50f3a6823c669388c5ea777ba858c14ab97842e0.tar.bz2 |
Fix "run-core-tests.sh" to work again.
cshapiro was complaining about this the other week, and I needed it today.
We should fix the duplication, but Android's crippled shell makes that
awkward, and this is the simplest thing that lets us carry on working...
Change-Id: I4c1a764d6069ba55a021631acdc4d6a665df0089
-rwxr-xr-x | run-core-tests | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/run-core-tests b/run-core-tests index 171ee21..67b79ee 100755 --- a/run-core-tests +++ b/run-core-tests @@ -42,4 +42,5 @@ exec dalvikvm \ -Djavax.net.ssl.trustStore=/system/etc/security/cacerts.bks \ -classpath $classpath \ -Xcheck:jni \ - -Xmx64M com.google.coretests.Main "$@" + -Xmx64M \ + com.google.coretests.Main "$@" |