diff options
| author | kprotty <kbutcher6200@gmail.com> | 2021-06-28 11:27:23 -0500 |
|---|---|---|
| committer | kprotty <kbutcher6200@gmail.com> | 2021-06-30 21:49:00 -0500 |
| commit | f0fa129e9b1cdbd90b231da14c6cd99c9413aa98 (patch) | |
| tree | 4e54d26a4ec212aefc91d36ec3a9391c881973fe /lib/std/Thread/Futex.zig | |
| parent | 7b323f84ca876c86bbe06f132d5a5d3775def3a2 (diff) | |
| download | zig-f0fa129e9b1cdbd90b231da14c6cd99c9413aa98.tar.gz zig-f0fa129e9b1cdbd90b231da14c6cd99c9413aa98.zip | |
std.Thread: more cleanup & testing
Diffstat (limited to 'lib/std/Thread/Futex.zig')
| -rw-r--r-- | lib/std/Thread/Futex.zig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/std/Thread/Futex.zig b/lib/std/Thread/Futex.zig index de7dd5e73b..4725deb2e3 100644 --- a/lib/std/Thread/Futex.zig +++ b/lib/std/Thread/Futex.zig @@ -407,7 +407,7 @@ test "Futex - wait/wake" { test "Futex - Signal" { if (single_threaded) { - return; + return error.SkipZigTest; } const Paddle = struct { @@ -449,7 +449,7 @@ test "Futex - Signal" { test "Futex - Broadcast" { if (single_threaded) { - return; + return error.SkipZigTest; } const Context = struct { @@ -506,7 +506,7 @@ test "Futex - Broadcast" { test "Futex - Chain" { if (single_threaded) { - return; + return error.SkipZigTest; } const Signal = struct { |
