From b819f80d87a5e73212b0c0b51495e86dfae45c9b Mon Sep 17 00:00:00 2001 From: Jesse Natalie Date: Fri, 27 May 2022 13:15:21 -0700 Subject: [PATCH] CI/windows: Move --fraction for deqp-runner to run command line Acked-by: Daniel Stone Part-of: --- .gitlab-ci/windows/deqp_runner_run.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci/windows/deqp_runner_run.ps1 b/.gitlab-ci/windows/deqp_runner_run.ps1 index 30d7be24300..8d4fe6ed45e 100644 --- a/.gitlab-ci/windows/deqp_runner_run.ps1 +++ b/.gitlab-ci/windows/deqp_runner_run.ps1 @@ -21,11 +21,11 @@ $includes = @("-t", "dEQP-VK.api.*", "-t", "dEQP-VK.info.*", "-t", "dEQP-VK.draw $env:DZN_DEBUG = "warp" $env:MESA_VK_IGNORE_CONFORMANCE_WARNING = "true" -deqp-runner run --deqp $($deqp_module) --output $($results) --caselist $($caselist) --baseline $($baseline) $($includes) --testlog-to-xml C:\deqp\executor\testlog-to-xml.exe --jobs 4 -- $($deqp_options) +deqp-runner run --deqp $($deqp_module) --output $($results) --caselist $($caselist) --baseline $($baseline) $($includes) --testlog-to-xml C:\deqp\executor\testlog-to-xml.exe --jobs 4 --fraction 3 -- $($deqp_options) $deqpstatus = $? $template = "See https://$($env:CI_PROJECT_ROOT_NAMESPACE).pages.freedesktop.org/-/$($env:CI_PROJECT_NAME)/-/jobs/$($env:CI_JOB_ID)/artifacts/results/{{testcase}}.xml" -deqp-runner junit --testsuite dEQP --results "$($results)/failures.csv" --output "$($results)/junit.xml" --fraction 3 --limit 50 --template $template +deqp-runner junit --testsuite dEQP --results "$($results)/failures.csv" --output "$($results)/junit.xml" --limit 50 --template $template if (!$deqpstatus) { Exit 1