From 71e0626657e053acd389ac510be571f90fd41457 Mon Sep 17 00:00:00 2001 From: Elie Tournier Date: Thu, 30 Apr 2020 09:21:52 +0100 Subject: [PATCH] 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 Reviewed-by: Tomeu Vizoso --- ci/run_test_suite.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/run_test_suite.sh b/ci/run_test_suite.sh index 46988c0..0d3d4c9 100755 --- a/ci/run_test_suite.sh +++ b/ci/run_test_suite.sh @@ -298,7 +298,7 @@ create_result_dir() TEST_PATH=${HOST_GL}_host${HOST_DRIVER}/${TEST_APP}_${TEST_NAME} 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} else echo WARNING: Results are not up-to-date!