Skip to content

Commit d27f54c

Browse files
committed
fix(test): Extend hang timeout
Since we're spawning a bunch of processes, that might sometimes take some time
1 parent 2485851 commit d27f54c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/behavior.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ fn testFuzzCrashes(allocator: std.mem.Allocator, fail_fast: bool) !Result {
251251
);
252252

253253
var timer = try std.time.Timer.start();
254-
while (!done and timer.read() < 2 * std.time.ns_per_s) {}
254+
while (!done and timer.read() < 10 * std.time.ns_per_s) {}
255255

256256
if (child.term) |term| {
257257
thread.join();

0 commit comments

Comments
 (0)