diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2023-10-28 03:16:33 -0400 |
|---|---|---|
| committer | Jacob Young <jacobly0@users.noreply.github.com> | 2023-10-29 07:20:36 -0400 |
| commit | f6f2708d8289e1cd6c24b954c261d478ee73ccfc (patch) | |
| tree | 576863cc60c8626c8b89b01621d0538a4923a9ce /lib/std/Thread/Condition.zig | |
| parent | 1fecf86ebfa352927e2e3aedfd16b0755482e96e (diff) | |
| download | zig-f6f2708d8289e1cd6c24b954c261d478ee73ccfc.tar.gz zig-f6f2708d8289e1cd6c24b954c261d478ee73ccfc.zip | |
x86_64: fix compiler rt test failures
Diffstat (limited to 'lib/std/Thread/Condition.zig')
| -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; |
