We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1763532 commit ba15d95Copy full SHA for ba15d95
.github/workflows/CI.yml
@@ -108,7 +108,7 @@ jobs:
108
109
- name: Test with ASAN (Linux)
110
if: matrix.os == 'ubuntu-24.04'
111
- run: cargo test --target x86_64-unknown-linux-gnu
+ run: cargo test --tests --target x86_64-unknown-linux-gnu
112
env:
113
RUST_TARGET: x86_64-unknown-linux-gnu
114
RUST_BACKTRACE: 1
@@ -130,7 +130,7 @@ jobs:
130
$env:PATH = "$($asanDllPath.DirectoryName);$env:PATH"
131
Write-Host "Found ASAN DLL at: $($asanDllPath.FullName)"
132
}
133
- cargo test --target x86_64-pc-windows-msvc
+ cargo test --tests --target x86_64-pc-windows-msvc
134
135
RUSTFLAGS: -Z${{ matrix.asan.flag }}
136
0 commit comments