ci: move outdated results to an archived folder

amdgpu, llvmpipe and i915 are not used by the freedesktop ci and
didn't see any update for at least 6 months.

Signed-off-by: Elie Tournier <elie.tournier@collabora.com>
Reviewed-by: Gurchetan Singh <gurchetansingh@chromium.org>
macos/master
Elie Tournier 5 years ago
parent b2940a21dd
commit c20a5a918a
  1. 0
      ci/previous_results/archived/es_host_amdgpu/deqp_gl30/results.txt
  2. 0
      ci/previous_results/archived/es_host_amdgpu/deqp_gl31/results.txt
  3. 0
      ci/previous_results/archived/es_host_amdgpu/deqp_gl32/results.txt
  4. 0
      ci/previous_results/archived/es_host_amdgpu/deqp_gles2/results.txt
  5. 0
      ci/previous_results/archived/es_host_amdgpu/deqp_gles3/results.txt
  6. 0
      ci/previous_results/archived/es_host_amdgpu/deqp_gles31/results.txt
  7. 0
      ci/previous_results/archived/es_host_i915/deqp_gl30/results.txt
  8. 0
      ci/previous_results/archived/es_host_i915/deqp_gl31/results.txt
  9. 0
      ci/previous_results/archived/es_host_i915/deqp_gl32/results.txt
  10. 0
      ci/previous_results/archived/es_host_i915/deqp_gles2/results.txt
  11. 0
      ci/previous_results/archived/es_host_i915/deqp_gles3/results.txt
  12. 0
      ci/previous_results/archived/es_host_i915/deqp_gles31/results.txt
  13. 0
      ci/previous_results/archived/es_host_i915/piglit_gles2/results.txt
  14. 0
      ci/previous_results/archived/es_host_i915/piglit_gles3/results.txt
  15. 0
      ci/previous_results/archived/es_host_llvmpipe/deqp_gles2/results.txt
  16. 0
      ci/previous_results/archived/es_host_llvmpipe/piglit_gles2/results.txt
  17. 0
      ci/previous_results/archived/es_host_llvmpipe/piglit_gles3/results.txt
  18. 0
      ci/previous_results/archived/gl_host_amdgpu/deqp_gl30/results.txt
  19. 0
      ci/previous_results/archived/gl_host_amdgpu/deqp_gl31/results.txt
  20. 0
      ci/previous_results/archived/gl_host_amdgpu/deqp_gl32/results.txt
  21. 0
      ci/previous_results/archived/gl_host_amdgpu/deqp_gles2/results.txt
  22. 0
      ci/previous_results/archived/gl_host_amdgpu/deqp_gles3/results.txt
  23. 0
      ci/previous_results/archived/gl_host_amdgpu/deqp_gles31/results.txt
  24. 0
      ci/previous_results/archived/gl_host_i915/deqp_gl30/results.txt
  25. 0
      ci/previous_results/archived/gl_host_i915/deqp_gl31/results.txt
  26. 0
      ci/previous_results/archived/gl_host_i915/deqp_gl32/results.txt
  27. 0
      ci/previous_results/archived/gl_host_i915/deqp_gles2/results.txt
  28. 0
      ci/previous_results/archived/gl_host_i915/deqp_gles3/results.txt
  29. 0
      ci/previous_results/archived/gl_host_i915/deqp_gles31/results.txt
  30. 0
      ci/previous_results/archived/gl_host_i915/piglit_gles2/results.txt
  31. 0
      ci/previous_results/archived/gl_host_i915/piglit_gles3/results.txt
  32. 0
      ci/previous_results/archived/gl_host_llvmpipe/deqp_gles2/results.txt
  33. 0
      ci/previous_results/archived/gl_host_llvmpipe/piglit_gles2/results.txt
  34. 0
      ci/previous_results/archived/gl_host_llvmpipe/piglit_gles3/results.txt
  35. 9
      ci/run_test_suite.sh

@ -297,7 +297,14 @@ create_result_dir()
TEST_PATH=${HOST_GL}_host${HOST_DRIVER}/${TEST_APP}_${TEST_NAME}
RESULTS_DIR=$VIRGL_PATH/results/${TEST_PATH}
PREVIOUS_RESULTS_DIR=$VIRGL_PATH/ci/previous_results/${TEST_PATH}
if [ $HOST_DRIVER = softpipe ]; then
PREVIOUS_RESULTS_DIR=$VIRGL_PATH/ci/previous_results/${TEST_PATH}
else
echo WARNING: Results are not up-to-date!
PREVIOUS_RESULTS_DIR=$VIRGL_PATH/ci/previous_results/archived/${TEST_PATH}
fi
IGNORE_TESTS_FILE=$PREVIOUS_RESULTS_DIR/ignore_tests.txt
# Remove comments from test-list

Loading…
Cancel
Save