Skip to content

Commit cbb7787

Browse files
committed
Don't use llvm-cov for cts_runner tests
1 parent 2faee30 commit cbb7787

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/cts.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,12 @@ jobs:
9999
if: matrix.os == 'ubuntu-24.04'
100100
uses: ./.github/actions/install-mesa
101101

102+
# Mixing --llvm-cov with deno (rusty_v8) has linking problems.
103+
# Explicitly set the backend to avoid EGL messages in output,
104+
# because these tests check stdout.
102105
- name: Test cts_runner
103106
shell: bash
104-
run: cargo --locked xtask test --llvm-cov -p cts_runner
107+
run: DENO_WEBGPU_BACKEND=${{ matrix.backend }} cargo --locked test -p cts_runner
105108

106109
- name: Run CTS
107110
shell: bash

0 commit comments

Comments
 (0)