panfrost: ci: Fix list of tests to run
authorTomeu Vizoso <tomeu.vizoso@collabora.com>
Tue, 7 May 2019 06:45:19 +0000 (08:45 +0200)
committerTomeu Vizoso <tomeu.vizoso@collabora.com>
Fri, 10 May 2019 05:37:13 +0000 (07:37 +0200)
Make sure we have only test case names in the list, excluding names of
test groups.

Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com>
Reviewed-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
src/gallium/drivers/panfrost/ci/deqp-runner.sh

index 9dd822016c35926c4673a7f2aa6deb0a9f02b6a8..a2133b489d6ad64a7d3d712829ee92f2f0cd967d 100644 (file)
@@ -17,7 +17,7 @@ cd /deqp/modules/gles2
 # Generate test case list file
 weston --tty=7 &
 sleep 1  # Give some time for Weston to start up
-./deqp-gles2 --deqp-runmode=stdout-caselist | grep dEQP-GLES2 | cut -d ' ' -f 2 > /tmp/case-list.txt
+./deqp-gles2 --deqp-runmode=stdout-caselist | grep "TEST: dEQP-GLES2" | cut -d ' ' -f 2 > /tmp/case-list.txt
 
 # Disable for now tests that are very slow, either by just using lots of CPU or by crashing
 sed -i '/dEQP-GLES2.performance/d' /tmp/case-list.txt
@@ -30,7 +30,7 @@ touch /tmp/result.txt
 tail -f /tmp/result.txt &
 
 while [ -s /tmp/case-list.txt ]; do
-    head -$BATCH_SIZE /tmp/case-list.txt > /tmp/next-batch.txt
+       head -$BATCH_SIZE /tmp/case-list.txt > /tmp/next-batch.txt
        ./deqp-gles2 --deqp-log-filename=/dev/null --deqp-caselist-file=/tmp/next-batch.txt --deqp-watchdog=enable --deqp-crashhandler=enable >> /tmp/result.txt
        deqp_status=$?