ci: Fix test results path for softpipe

In c20a5a9, I move some unused results files in the archived folder
but I didn't correctly fix the path of the softpipe results.
Softpipe is the driver used for the ci so its results file wasn't archived.

Fixes: c20a5a9 "ci: move outdated results to an archived folder"
Signed-off-by: Elie Tournier <elie.tournier@collabora.com>
Reviewed-by: Tomeu Vizoso <tomeu.vizoso@collabora.com>
macos/master
Elie Tournier 5 years ago
parent 0fd03056e1
commit 71e0626657
  1. 2
      ci/run_test_suite.sh

@ -298,7 +298,7 @@ create_result_dir()
TEST_PATH=${HOST_GL}_host${HOST_DRIVER}/${TEST_APP}_${TEST_NAME} TEST_PATH=${HOST_GL}_host${HOST_DRIVER}/${TEST_APP}_${TEST_NAME}
RESULTS_DIR=$VIRGL_PATH/results/${TEST_PATH} RESULTS_DIR=$VIRGL_PATH/results/${TEST_PATH}
if [ $HOST_DRIVER = softpipe ]; then if [ "$HOST_DRIVER" = "_softpipe" ]; then
PREVIOUS_RESULTS_DIR=$VIRGL_PATH/ci/previous_results/${TEST_PATH} PREVIOUS_RESULTS_DIR=$VIRGL_PATH/ci/previous_results/${TEST_PATH}
else else
echo WARNING: Results are not up-to-date! echo WARNING: Results are not up-to-date!

Loading…
Cancel
Save