diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-10-29 13:10:51 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-29 13:10:51 -0400 |
| commit | fa022d1ecc148280a3b6e95312087b4e8c0c6166 (patch) | |
| tree | 576863cc60c8626c8b89b01621d0538a4923a9ce /lib/std/Thread | |
| parent | 37295696ec5b1350333b88173187a3db8b199925 (diff) | |
| parent | f6f2708d8289e1cd6c24b954c261d478ee73ccfc (diff) | |
| download | zig-fa022d1ecc148280a3b6e95312087b4e8c0c6166.tar.gz zig-fa022d1ecc148280a3b6e95312087b4e8c0c6166.zip | |
Merge pull request #17759 from jacobly0/x86_64
x86_64: pass more tests
Diffstat (limited to 'lib/std/Thread')
| -rw-r--r-- | lib/std/Thread/Condition.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/std/Thread/Condition.zig b/lib/std/Thread/Condition.zig index 88e5f73d81..ecbc25fdb0 100644 --- a/lib/std/Thread/Condition.zig +++ b/lib/std/Thread/Condition.zig @@ -440,6 +440,8 @@ test "Condition - multi signal" { return error.SkipZigTest; } + if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; + const num_threads = 4; const num_iterations = 4; |
