diff options
author | Tomeu Vizoso <[email protected]> | 2019-05-07 08:45:19 +0200 |
---|---|---|
committer | Tomeu Vizoso <[email protected]> | 2019-05-10 07:37:13 +0200 |
commit | bbed39bbf2b96b60dca4a75b3432bd4d95ff2741 (patch) | |
tree | 8f663342b75c44699260e146d33d2af4f6d8dcba /src | |
parent | 7842fe3a457fec5d42e82523b833810b81ab8929 (diff) |
panfrost: ci: Fix list of tests to run
Make sure we have only test case names in the list, excluding names of
test groups.
Signed-off-by: Tomeu Vizoso <[email protected]>
Reviewed-by: Alyssa Rosenzweig <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/panfrost/ci/deqp-runner.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/panfrost/ci/deqp-runner.sh b/src/gallium/drivers/panfrost/ci/deqp-runner.sh index 9dd822016c3..a2133b489d6 100644 --- a/src/gallium/drivers/panfrost/ci/deqp-runner.sh +++ b/src/gallium/drivers/panfrost/ci/deqp-runner.sh @@ -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=$? |