I found the C++ runner hard to develop on, and we had stability issues and outstanding feature needs that made me want something I felt good about hacking on. Thus, Rewrite It In Rust of the deqp runner. The new runner includes: - Skip lists don't reshuffle the test list. - Known-flake handling without resorting to skip lists (fixing our main CI reliability issue on a3xx right now). - Per-thread Vulkan shader caches should speed up VK CI runtime. - Tracking of crashes separate from fails (so we can see progress on that front). - Logging of deqp stderr spam (particularly assertion failures!) in the CI log. - Integrated QPA filtering so we don't have bash perf issues for it. - Logging of what caselist to go look at for a given error report (in red, so it's easier to find in your CI log). - The code is 1/3 unit tests, and easy to extend for more coverage. - Non-LAVA CI runs create a failures.csv in artifacts that you can check in as your deqp-*-fails.txt file. - Test runtime is included in results.csv so you can debug how to speed up your CI job. - Pretty summary at the end of the run of slow/flaky/failed tests. Since this is a new runner with a different RNG, the test groups are shuffled one more time. This seems to result in some panfrost T720 stability issues (See its new deqp-panfrost-t720-flakes.txt), and one new flake in freedreno a630. Reviewed-by: Tomeu Vizoso <tomeu.vizoso@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7434>
52 lines
2.0 KiB
Bash
Executable File
52 lines
2.0 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
arch=$1
|
|
cross_file="/cross_file-$arch.txt"
|
|
/usr/share/meson/debcrossgen --arch $arch -o "$cross_file"
|
|
# Explicitly set ccache path for cross compilers
|
|
sed -i "s|/usr/bin/\([^-]*\)-linux-gnu\([^-]*\)-g|/usr/lib/ccache/\\1-linux-gnu\\2-g|g" "$cross_file"
|
|
if [ "$arch" = "i386" ]; then
|
|
# Work around a bug in debcrossgen that should be fixed in the next release
|
|
sed -i "s|cpu_family = 'i686'|cpu_family = 'x86'|g" "$cross_file"
|
|
fi
|
|
# Rely on qemu-user being configured in binfmt_misc on the host
|
|
sed -i -e '/\[properties\]/a\' -e "needs_exe_wrapper = False" "$cross_file"
|
|
|
|
# Add a line for rustc, which debcrossgen is missing.
|
|
cc=`sed -n 's|c = .\(.*\).|\1|p' < $cross_file`
|
|
if [[ "$arch" = "arm64" ]]; then
|
|
rust_target=aarch64-unknown-linux-gnu
|
|
elif [[ "$arch" = "armhf" ]]; then
|
|
rust_target=armv7-unknown-linux-gnueabihf
|
|
elif [[ "$arch" = "i386" ]]; then
|
|
rust_target=i686-unknown-linux-gnu
|
|
elif [[ "$arch" = "ppc64el" ]]; then
|
|
rust_target=powerpc64le-unknown-linux-gnu
|
|
elif [[ "$arch" = "s390x" ]]; then
|
|
rust_target=s390x-unknown-linux-gnu
|
|
else
|
|
echo "Needs rustc target mapping"
|
|
fi
|
|
sed -i -e '/\[binaries\]/a\' -e "rust = ['rustc', '--target=$rust_target', '-C', 'linker=$cc']" "$cross_file"
|
|
|
|
# Set up cmake cross compile toolchain file for dEQP builds
|
|
toolchain_file="/toolchain-$arch.cmake"
|
|
if [[ "$arch" = "arm64" ]]; then
|
|
GCC_ARCH="aarch64-linux-gnu"
|
|
DE_CPU="DE_CPU_ARM_64"
|
|
CMAKE_ARCH=arm
|
|
elif [[ "$arch" = "armhf" ]]; then
|
|
GCC_ARCH="arm-linux-gnueabihf"
|
|
DE_CPU="DE_CPU_ARM"
|
|
CMAKE_ARCH=arm
|
|
fi
|
|
|
|
if [[ -n "$GCC_ARCH" ]]; then
|
|
echo "set(CMAKE_SYSTEM_NAME Linux)" > "$toolchain_file"
|
|
echo "set(CMAKE_SYSTEM_PROCESSOR arm)" >> "$toolchain_file"
|
|
echo "set(CMAKE_C_COMPILER /usr/lib/ccache/$GCC_ARCH-gcc)" >> "$toolchain_file"
|
|
echo "set(CMAKE_CXX_COMPILER /usr/lib/ccache/$GCC_ARCH-g++)" >> "$toolchain_file"
|
|
echo "set(ENV{PKG_CONFIG} \"/usr/bin/$GCC_ARCH-pkg-config\")" >> "$toolchain_file"
|
|
echo "set(DE_CPU $DE_CPU)" >> "$toolchain_file"
|
|
fi
|