From: Carl Worth Date: Tue, 20 Jul 2010 00:48:17 +0000 (-0700) Subject: glcpp: Make test suite report final count of passed/total tests. X-Git-Tag: 062012170305~10660^2~360 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3a530b8ef68a40526b33de2af8de85f71ebdb30d;p=profile%2Fivi%2Fmesa.git glcpp: Make test suite report final count of passed/total tests. And report PASS or FAIL for each test along the way as well. --- diff --git a/src/glsl/glcpp/tests/glcpp-test b/src/glsl/glcpp/tests/glcpp-test index 396f6e1..8277719 100755 --- a/src/glsl/glcpp/tests/glcpp-test +++ b/src/glsl/glcpp/tests/glcpp-test @@ -1,7 +1,27 @@ #!/bin/sh +total=0 +pass=0 + for test in *.c; do - echo "Testing $test" + echo -n "Testing $test..." ../glcpp < $test > $test.out - diff -u $test.expected $test.out + total=$((total+1)) + if cmp $test.expected $test.out; then + echo "PASS" + pass=$((pass+1)) + else + echo "FAIL" + diff -u $test.expected $test.out + fi done + +echo "$pass/$total tests returned correct results" +echo "" + +if [ "$pass" = "$total" ] ; then + exit 0 +else + exit 1 +fi +