mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-12-13 12:14:18 +08:00
53826932db
This brings in some major new features in the runner: - piglit tests now include subtest reporting - "-t" support for quick include-filtering of tests. - piglit tests that crash after their result report are considered crashes. - throws a nice error if you try to annotate the same failure twice (e.g. lvp's dEQP-VK.glsl.builtin.precision.pow.highp.vec2,Fail) Since the runner catches piglit test bugs where the same subtest is run twice, we also uprev piglit to pull in the fixes for those. Reviewed-by: Juan A. Suarez <jasuarez@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11283>
10 lines
152 B
Bash
10 lines
152 B
Bash
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
cargo install --locked deqp-runner \
|
|
-j ${FDO_CI_CONCURRENT:-4} \
|
|
--version 0.7.2 \
|
|
--root /usr/local \
|
|
$EXTRA_CARGO_ARGS
|