about summary refs log tree commit diff
path: root/src/etc
diff options
context:
space:
mode:
authorDaniel Micay <danielmicay@gmail.com>2013-06-13 17:59:34 -0400
committerDaniel Micay <danielmicay@gmail.com>2013-06-13 18:03:08 -0400
commitec276448708983e506cd2751feb4efedc096b13e (patch)
tree5948aeef04b1e946efbcb3faf6844ddaa8ea5c67 /src/etc
parent541c657a738006d78171aa261125a6a46f283b35 (diff)
downloadrust-ec276448708983e506cd2751feb4efedc096b13e.tar.gz
rust-ec276448708983e506cd2751feb4efedc096b13e.zip
automated whitespace fixes
Diffstat (limited to 'src/etc')
-rwxr-xr-xsrc/etc/adb_run_wrapper.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/etc/adb_run_wrapper.sh b/src/etc/adb_run_wrapper.sh
index 68ac6b4242c..fb1e0937fc9 100755
--- a/src/etc/adb_run_wrapper.sh
+++ b/src/etc/adb_run_wrapper.sh
@@ -2,7 +2,7 @@
 # usage : adb_run_wrapper [test dir - where test executables exist] [test executable]
 #
 
-# Sometimes android shell produce exitcode "1 : Text File Busy" 
+# Sometimes android shell produce exitcode "1 : Text File Busy"
 # Retry after $WAIT seconds, expecting resource cleaned-up
 WAIT=10
 PATH=$1
@@ -20,7 +20,7 @@ then
         while [ $L_RET -eq 1 ]
         do
             LD_LIBRARY_PATH=$PATH $PATH/$RUN $@ 1>$PATH/$RUN.stdout 2>$PATH/$RUN.stderr
-            L_RET=$? 
+            L_RET=$?
             if [ $L_COUNT -gt 0 ]
             then
                /system/bin/sleep $WAIT
@@ -28,7 +28,7 @@ then
             fi
             L_COUNT=`expr $L_COUNT+1`
         done
-        
+
         echo $L_RET > $PATH/$RUN.exitcode
 
     fi