telepathy-gabble: run-test.sh.in: make the indentation make sense

Simon McVittie smcv at kemper.freedesktop.org
Tue Aug 6 07:31:01 PDT 2013


Module: telepathy-gabble
Branch: master
Commit: 6df8c13f5817b3c9f6e7f0592195257a3d857147
URL:    http://cgit.freedesktop.org/telepathy/telepathy-gabble/commit/?id=6df8c13f5817b3c9f6e7f0592195257a3d857147

Author: Simon McVittie <simon.mcvittie at collabora.co.uk>
Date:   Thu May 30 14:26:19 2013 +0100

run-test.sh.in: make the indentation make sense

The Python invocation is indented, because it's a command-line argument
for the sh invocation. The case shouldn't be.

Reviewed-by: Guillaume Desmottes <guillaume.desmottes at collabora.co.uk>
Bug: https://bugs.freedesktop.org/show_bug.cgi?id=65290

---

 tests/twisted/run-test.sh.in |   26 +++++++++++++-------------
 1 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/tests/twisted/run-test.sh.in b/tests/twisted/run-test.sh.in
index e0b146c..8dd5fd6 100644
--- a/tests/twisted/run-test.sh.in
+++ b/tests/twisted/run-test.sh.in
@@ -51,19 +51,19 @@ for i in $list ; do
     --config-file="${config_file}" \
     -- \
     @TEST_PYTHON@ -u "${test_src}/twisted/$i"
-    e=$?
-    case "$e" in
-        (0)
-            echo "PASS: $i"
-            ;;
-        (77)
-            echo "SKIP: $i"
-            ;;
-        (*)
-            any_failed=1
-            echo "FAIL: $i ($e)"
-            ;;
-    esac
+  e=$?
+  case "$e" in
+    (0)
+      echo "PASS: $i"
+      ;;
+    (77)
+      echo "SKIP: $i"
+      ;;
+    (*)
+      any_failed=1
+      echo "FAIL: $i ($e)"
+      ;;
+  esac
 done
 
 exit $any_failed



More information about the telepathy-commits mailing list