summaryrefslogtreecommitdiffstats
path: root/src/compiler/glsl/tests
diff options
context:
space:
mode:
authorEmil Velikov <[email protected]>2017-02-26 21:24:42 +0000
committerEmil Velikov <[email protected]>2017-03-28 15:31:23 +0100
commitbd4be79fc5ba1dfb18ca25d7f2a39cfc9b23fdd2 (patch)
treebeb78756ff275aada552851605efb3c6397558aa /src/compiler/glsl/tests
parent1c58d08bd96c13c1de644c0adc4b8ec7c1967636 (diff)
glsl/tests/warnings-test: print only the test basename
Spamming the log with the (in some cases extremely long) test location is of limited use. Signed-off-by: Emil Velikov <[email protected]> Acked-by: Kenneth Graunke <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/compiler/glsl/tests')
-rwxr-xr-xsrc/compiler/glsl/tests/warnings-test.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/glsl/tests/warnings-test.sh b/src/compiler/glsl/tests/warnings-test.sh
index 14ab08c30de..d5dc3b5974f 100755
--- a/src/compiler/glsl/tests/warnings-test.sh
+++ b/src/compiler/glsl/tests/warnings-test.sh
@@ -30,7 +30,7 @@ echo "====== Testing compilation output ======"
for test in $srcdir/$tests_relative_dir/*.vert; do
test_output="$abs_builddir/$tests_relative_dir/`basename $test`"
mkdir -p $abs_builddir/$tests_relative_dir/
- echo -n "Testing $test..."
+ echo -n "Testing `basename $test`..."
$compiler --just-log --version 150 "$test" > "$test_output.out" 2>&1
total=$((total+1))
if diff "$test.expected" "$test_output.out" >/dev/null 2>&1; then