diff options
author | Lars Hjemli | 2011-05-22 12:21:31 +0200 |
---|---|---|
committer | Lars Hjemli | 2011-05-23 22:58:35 +0200 |
commit | afe04daa3380ae144c2c9b486674c98e5dd082a3 (patch) | |
tree | d5589954c02e354320005ab8e322b5fd1eed7436 /tests | |
parent | Fix escaping of paths with spaces (diff) | |
download | cgit-afe04daa3380ae144c2c9b486674c98e5dd082a3.tar.gz cgit-afe04daa3380ae144c2c9b486674c98e5dd082a3.zip |
tests/setup.sh: add support for known bugs
This patch makes it possible to add tests for known bugs without aborting the testrun. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/setup.sh | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/tests/setup.sh b/tests/setup.sh index 30f90d5..9f66d89 100755 --- a/tests/setup.sh +++ b/tests/setup.sh | |||
@@ -101,6 +101,12 @@ tests_done() | |||
101 | 101 | ||
102 | run_test() | 102 | run_test() |
103 | { | 103 | { |
104 | bug=0 | ||
105 | if test "$1" = "BUG" | ||
106 | then | ||
107 | bug=1 | ||
108 | shift | ||
109 | fi | ||
104 | desc=$1 | 110 | desc=$1 |
105 | script=$2 | 111 | script=$2 |
106 | test_count=$(expr $test_count + 1) | 112 | test_count=$(expr $test_count + 1) |
@@ -109,9 +115,15 @@ run_test() | |||
109 | eval "$2" >>test-output.log 2>>test-output.log | 115 | eval "$2" >>test-output.log 2>>test-output.log |
110 | res=$? | 116 | res=$? |
111 | printf "test %d: exitcode=%d\n" $test_count $res >>test-output.log | 117 | printf "test %d: exitcode=%d\n" $test_count $res >>test-output.log |
112 | if test $res = 0 | 118 | if test $res = 0 -a $bug = 0 |
113 | then | 119 | then |
114 | printf " %2d) %-60s [ok]\n" $test_count "$desc" | 120 | printf " %2d) %-60s [ok]\n" $test_count "$desc" |
121 | elif test $res = 0 -a $bug = 1 | ||
122 | then | ||
123 | printf " %2d) %-60s [BUG FIXED]\n" $test_count "$desc" | ||
124 | elif test $bug = 1 | ||
125 | then | ||
126 | printf " %2d) %-60s [KNOWN BUG]\n" $test_count "$desc" | ||
115 | else | 127 | else |
116 | test_failed=$(expr $test_failed + 1) | 128 | test_failed=$(expr $test_failed + 1) |
117 | printf " %2d) %-60s [failed]\n" $test_count "$desc" | 129 | printf " %2d) %-60s [failed]\n" $test_count "$desc" |