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

Unified Diff: examples/srpc/notification_center/srpcpp/runtests.sh

Issue 11636027: Add ARM toolchain support. (Closed) Base URL: git@github.com:samclegg/naclports.git@sbc
Patch Set: Created 8 years 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
Index: examples/srpc/notification_center/srpcpp/runtests.sh
diff --git a/examples/srpc/notification_center/srpcpp/runtests.sh b/examples/srpc/notification_center/srpcpp/runtests.sh
index 8791a95fe99831015e349a7911d61942ce456b6e..2d9f4d6c683f93ec1b6c42268f90fca7732b989f 100755
--- a/examples/srpc/notification_center/srpcpp/runtests.sh
+++ b/examples/srpc/notification_center/srpcpp/runtests.sh
@@ -4,13 +4,13 @@ echo "Running all tests in `pwd`"
SEL_LDR="SEL_LDR NOT FOUND"
-if [ ! -n "$1" ]
+if [ ! -n "$1" ]
then
echo "sel_ldr not provided as argument, attempting to locate it."
#check for sel_ldr in path
SEL_LDR=`which sel_ldr`
-
- if [ "x${SEL_LDR}" == "x" ]
+
+ if [ "x${SEL_LDR}" = "x" ]
then
echo "sel_ldr binary not found in path.";
echo "Please enter complete path to sel_ldr:"
@@ -28,8 +28,8 @@ then
echo "using sel_ldr: ${SEL_LDR}"
for i in `ls *test*\.nexe`;
- do
- echo "Running: "$i;
+ do
+ echo "Running: "$i;
$SEL_LDR $i || exit 1
echo "Test finished successfully, moving on..."
done

Powered by Google App Engine
This is Rietveld 408576698