change tests to avoid -fincremental, causes issues on windows, also reducing payload size for concurrent queue test, due to memory constraints

This commit is contained in:
peterino2 2025-11-06 20:44:59 -08:00
parent fb131ab6c4
commit a727aedd97
2 changed files with 2 additions and 2 deletions

View File

@ -186,7 +186,7 @@ test "concurrent queue multiple producer single consumer" {
const Payload = struct {
x: i64 = 0,
arb: [4096 * 16]u8 = undefined,
arb: [4096]u8 = undefined,
};
const QueueType = ConcurrentQueueUnmanagedAdvanced(Payload, .{ .debug = false, .allowAsserts = true });

2
lib/test-libs.py vendored
View File

@ -31,7 +31,7 @@ def launchTests():
for d in dirs:
print(">>>>> testing " , d)
try:
run(['zig', 'build', 'test', '-fincremental'], cwd=os.path.join(orig_dir, d))
run(['zig', 'build', 'test'], cwd=os.path.join(orig_dir, d))
results[d] = "success 🍆💦😏"
except:
results[d] = "test failed. ❌️🤡🍿🍦🎪🎈"