From aefe4b43333163461b5df5117748dadd1e182075 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Thu, 30 May 2013 14:26:19 +0100 Subject: [PATCH] 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. --- tests/twisted/run-test.sh.in | 26 +++++++++++++------------- 1 file 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 -- 1.7.10.4