commit dd10d3fb5219bb5683b90b4141b0f27eb02dd614 (tree)
parent b22eb176b0d6e2275b89b715f7e3f0dd0a5fc574
Author: Alex Rønne Petersen <alex@alexrp.com>
Date: Thu, 2 Apr 2026 12:32:23 +0200
libc-test: disable pthread_cancel-points.c
This test is racey if multiple instances of it run concurrently.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/libc.zig b/test/libc.zig
@@ -22,7 +22,7 @@ pub fn addCases(cases: *tests.LibcContext) void {
cases.addLibcTestCase("functional/memstream.c", true, .{});
// "functional/mntent.c": https://www.openwall.com/lists/musl/2024/10/22/1
cases.addLibcTestCase("functional/popen.c", false, .{});
- cases.addLibcTestCase("functional/pthread_cancel-points.c", false, .{});
+ // cases.addLibcTestCase("functional/pthread_cancel-points.c", false, .{}); - racey if multiple instances of the test run concurrently.
cases.addLibcTestCase("functional/pthread_cancel.c", false, .{});
cases.addLibcTestCase("functional/pthread_cond.c", false, .{});
cases.addLibcTestCase("functional/pthread_mutex.c", false, .{});