From: Emil Velikov <[email protected]> We don't want to lie ourselves that 'everything is fine' when no tests were found/ran.
Signed-off-by: Emil Velikov <[email protected]> --- src/compiler/glsl/tests/warnings-test.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/compiler/glsl/tests/warnings-test.sh b/src/compiler/glsl/tests/warnings-test.sh index b370fc97223..7e3767481a7 100755 --- a/src/compiler/glsl/tests/warnings-test.sh +++ b/src/compiler/glsl/tests/warnings-test.sh @@ -42,6 +42,11 @@ for test in $srcdir/$tests_relative_dir/*.vert; do fi done +if [ $total -eq 0 ]; then + echo "Could not find any tests." + exit 1 +fi + echo "" echo "$pass/$total tests returned correct results" echo "" -- 2.11.1 _______________________________________________ mesa-dev mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-dev
