diff options
author | Emil Velikov <[email protected]> | 2017-02-27 18:58:06 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-03-28 15:31:24 +0100 |
commit | ee8aea35725e4b582ed8af2866d0feffa2d13c6e (patch) | |
tree | 314d8ab684c30463e48b9f391b5a3f133316f846 /src/compiler/glsl/tests/optimization-test.sh | |
parent | 79a95f19e64a1d2f855e3f8194b86dc0b2a78c3f (diff) |
glsl/tests/optimization-test: 'echo' only folders which has generators
The current "let's print any folder which exists" is simply confusing.
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/optimization-test.sh')
-rwxr-xr-x | src/compiler/glsl/tests/optimization-test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/glsl/tests/optimization-test.sh b/src/compiler/glsl/tests/optimization-test.sh index f280dd39495..e54edc7fb01 100755 --- a/src/compiler/glsl/tests/optimization-test.sh +++ b/src/compiler/glsl/tests/optimization-test.sh @@ -34,6 +34,7 @@ ORIGDIR=`pwd` echo "====== Generating tests ======" for dir in $srcdir/glsl/tests/*/; do if [ -e "${dir}create_test_cases.py" ]; then + echo "$dir" # construct the correct builddir completedir="$abs_builddir/glsl/tests/`echo ${dir} | sed 's|.*/glsl/tests/||g'`" mkdir -p $completedir @@ -44,7 +45,6 @@ for dir in $srcdir/glsl/tests/*/; do fi cd .. fi - echo "$dir" done cd "$ORIGDIR" |