From 5ea5b800b84da7f6b387c3adcd95e2b560e2f8ce Mon Sep 17 00:00:00 2001 From: Sebastian Kaspari Date: Sun, 6 Mar 2011 11:49:33 +0100 Subject: [PATCH] Fix testrunner script --- test.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test.sh b/test.sh index b50c1c5..26edcc6 100755 --- a/test.sh +++ b/test.sh @@ -16,9 +16,9 @@ fi . build.conf echo "Starting emulator" -"$ANDROID_SDK"tools/emulator -avd "$AVD_TEST" & +"$ANDROID_SDK"/tools/emulator -avd "$AVD_TEST" & -sleep 35 +sleep 40 echo "Unlocking emulator" echo "event send EV_KEY:KEY_MENU:1 EV_KEY:KEY_MENU:0" | telnet localhost 5554 @@ -26,7 +26,7 @@ echo "event send EV_KEY:KEY_MENU:1 EV_KEY:KEY_MENU:0" | telnet localhost 5554 sleep 5 echo "Running tests" -"$ANDROID_SDK"tools/adb -e shell "am instrument -w org.yaaic.test/android.test.InstrumentationTestRunner" +"$ANDROID_SDK"/platform-tools/adb -e shell "am instrument -w org.yaaic.test/android.test.InstrumentationTestRunner" sleep 3