[Mesa-dev] [PATCH v2 3/4] glsl/tests: call create_test_cases.py in optimization-test

Connor Abbott cwabbott0 at gmail.com
Tue May 27 18:23:04 PDT 2014


This way, when someone modifies create_test_cases.py and forgets to
commit their changes again, people will notice.

v2: make sure we parse the right directories and check for existance the
right way.

Signed-off-by: Connor Abbott <cwabbott0 at gmail.com>
---
 src/glsl/tests/optimization-test | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/src/glsl/tests/optimization-test b/src/glsl/tests/optimization-test
index 8ca7776..bf15153 100755
--- a/src/glsl/tests/optimization-test
+++ b/src/glsl/tests/optimization-test
@@ -9,6 +9,14 @@ fi
 total=0
 pass=0
 
+echo "======       Generating tests      ======"
+for dir in tests/*/; do
+    if [ -e "${dir}create_test_cases.py" ]; then
+        cd $dir; python create_test_cases.py; cd ..
+    fi
+    echo "$dir"
+done
+
 echo "====== Testing optimization passes ======"
 for test in `find . -iname '*.opt_test'`; do
     echo -n "Testing $test..."
-- 
1.8.3.1



More information about the mesa-dev mailing list