Skip to content

Commit f9014d8

Browse files
committed
wpt: read file until 128k
1 parent 7f308f5 commit f9014d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wpt/run.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ pub fn run(arena: Allocator, comptime dir: []const u8, f: []const u8, loader: *F
3535
const html = blk: {
3636
const file = try std.fs.cwd().openFile(f, .{});
3737
defer file.close();
38-
break :blk try file.readToEndAlloc(arena, 16 * 1024);
38+
break :blk try file.readToEndAlloc(arena, 128 * 1024);
3939
};
4040

4141
const dirname = fspath.dirname(f[dir.len..]) orelse unreachable;

0 commit comments

Comments
 (0)