summaryrefslogtreecommitdiffabout
authorLars Hjemli <hjemli@gmail.com>2011-05-22 10:21:31 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2011-05-23 20:58:35 (UTC)
commitafe04daa3380ae144c2c9b486674c98e5dd082a3 (patch) (unidiff)
treed5589954c02e354320005ab8e322b5fd1eed7436
parent74152744f0d56c2d0211728206a218a33df41a5d (diff)
downloadcgit-afe04daa3380ae144c2c9b486674c98e5dd082a3.zip
cgit-afe04daa3380ae144c2c9b486674c98e5dd082a3.tar.gz
cgit-afe04daa3380ae144c2c9b486674c98e5dd082a3.tar.bz2
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 (more/less context) (ignore whitespace changes)
-rwxr-xr-xtests/setup.sh14
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
@@ -98,23 +98,35 @@ tests_done()
98 false 98 false
99 fi 99 fi
100} 100}
101 101
102run_test() 102run_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)
107 printf "\ntest %d: name='%s'\n" $test_count "$desc" >>test-output.log 113 printf "\ntest %d: name='%s'\n" $test_count "$desc" >>test-output.log
108 printf "test %d: eval='%s'\n" $test_count "$2" >>test-output.log 114 printf "test %d: eval='%s'\n" $test_count "$2" >>test-output.log
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"
118 fi 130 fi
119} 131}
120 132