-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
fuzz testing: support Windows #20987
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
contributor friendly
This issue is limited in scope and/or knowledge of Zig internals.
enhancement
Solving this issue will likely involve adding new logic or components to the codebase.
fuzzing
os-windows
Milestone
Comments
gcoakes
added a commit
to gcoakes/zig
that referenced
this issue
Aug 15, 2024
This resolves one aspect of ziglang#20987 by changing the existing use of `std.posix.mmap` to use the newly added `std.fs.MemoryMap`.
gcoakes
added a commit
to gcoakes/zig
that referenced
this issue
Aug 15, 2024
This resolves one aspect of ziglang#20987 by changing the existing use of `std.posix.mmap` to use the newly added `std.fs.MemoryMap`.
gcoakes
added a commit
to gcoakes/zig
that referenced
this issue
Aug 15, 2024
This resolves one aspect of ziglang#20987 by changing the existing use of `std.posix.mmap` to use the newly added `std.fs.MemoryMap`.
gcoakes
added a commit
to gcoakes/zig
that referenced
this issue
Aug 18, 2024
This resolves one aspect of ziglang#20987 by changing the existing use of `std.posix.mmap` to use the newly added `std.fs.MemoryMap`.
gcoakes
added a commit
to gcoakes/zig
that referenced
this issue
Aug 18, 2024
This resolves one aspect of ziglang#20987 by changing the existing use of `std.posix.mmap` to use the newly added `std.fs.MemoryMap`.
gcoakes
added a commit
to gcoakes/zig
that referenced
this issue
Aug 18, 2024
This resolves one aspect of ziglang#20987 by changing the existing use of `std.posix.mmap` to use the newly added `std.fs.MemoryMap`.
gcoakes
added a commit
to gcoakes/zig
that referenced
this issue
Aug 18, 2024
This resolves one aspect of ziglang#20987 by changing the existing use of `std.posix.mmap` to use the newly added `std.fs.MemoryMap`.
gcoakes
added a commit
to gcoakes/zig
that referenced
this issue
Aug 18, 2024
This resolves one aspect of ziglang#20987 by changing the existing use of `std.posix.mmap` to use the newly added `std.fs.MemoryMap`.
gcoakes
added a commit
to gcoakes/zig
that referenced
this issue
Aug 18, 2024
This resolves one aspect of ziglang#20987 by changing the existing use of `std.posix.mmap` to use the newly added `std.fs.MemoryMap`.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
contributor friendly
This issue is limited in scope and/or knowledge of Zig internals.
enhancement
Solving this issue will likely involve adding new logic or components to the codebase.
fuzzing
os-windows
Extracted from #20958.
zig build --fuzz
does not work on Windows yet:zig/lib/compiler/build_runner.zig
Lines 421 to 430 in 4381bac
As noted in that comment, the current implementation depends on two things that need to be ported to Windows:
std.debug.Info
(it needs a batching API for resolving many addresses to source locations).To reproduce:
The text was updated successfully, but these errors were encountered: