Skip to content

Commit

Permalink
expect wasm32 to have 64KB page size
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Philipp Hafer committed Aug 22, 2023
1 parent 587d3bd commit 5f11466
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/std/os/test.zig
Original file line number Diff line number Diff line change
Expand Up @@ -1224,7 +1224,7 @@ test "getDefaultPageSize smoke test" {
const page_size = try os.getDefaultPageSize();
switch (page_size) {
// zig fmt: off
1024, 2048, 4096, 8192, 16384, 32768, // 1, 2, 4, 8, 16, 32KB
1024, 2048, 4096, 8192, 16384, 32768, 65536, // 1, 2, 4, 8, 16, 32, 64KB
2097152, 4194304 => {}, // 2, 4MB
// zig fmt: on
else => return error.InvalidDefaultPageSize,
Expand Down

0 comments on commit 5f11466

Please sign in to comment.