mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-12-03 23:24:17 +08:00
cee1142fa3
I recently fixed one issue that triggered an assertion in the Vulkan common code. This was because the tool allocated cmdbuf from the wrong pool (in presence of multiple queues). Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Martin Roukala <martin.roukala@mupuf.org> Reviewed-by: Emma Anholt <emma@anholt.net> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17002>
17 lines
482 B
Bash
17 lines
482 B
Bash
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
PARALLEL_DEQP_RUNNER_VERSION=fe557794b5dadd8dbf0eae403296625e03bda18a
|
|
|
|
git clone https://gitlab.freedesktop.org/mesa/parallel-deqp-runner --single-branch -b master --no-checkout /parallel-deqp-runner
|
|
pushd /parallel-deqp-runner
|
|
git checkout "$PARALLEL_DEQP_RUNNER_VERSION"
|
|
meson . _build
|
|
ninja -C _build hang-detection
|
|
mkdir -p build/bin
|
|
install _build/hang-detection build/bin
|
|
strip build/bin/*
|
|
find . -not -path './build' -not -path './build/*' -delete
|
|
popd
|