We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
0.14.0-dev.2243+9ebce51e1
❯ zig-dev test -ffuzz test.zig thread 16123 panic: missing --cache-dir=[path] argument /home/din/zig/master/lib/compiler/test_runner.zig:50:48: 0x1122918 in main (test) const cache_dir = opt_cache_dir orelse @panic("missing --cache-dir=[path] argument"); ❯ zig-dev test -ffuzz test.zig --cache-dir=/home/din/.cache/zig/ error: unrecognized parameter: '--cache-dir=/home/din/.cache/zig/' ❯ zig-dev test -ffuzz test.zig --cache-dir /home/din/.cache/zig/ thread 16032 panic: missing --cache-dir=[path] argument /home/din/zig/master/lib/compiler/test_runner.zig:50:48: 0x1122918 in main (test) const cache_dir = opt_cache_dir orelse @panic("missing --cache-dir=[path] argument");
I am expecting zig test to accept --cache-dir=/home/din/.cache/zig as a parameter or -ffuzz to not require a cache-dir parameter for fuzzing.
zig test
--cache-dir=/home/din/.cache/zig
-ffuzz
cache-dir
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Zig Version
0.14.0-dev.2243+9ebce51e1
Steps to Reproduce and Observed Behavior
Expected Behavior
I am expecting
zig test
to accept--cache-dir=/home/din/.cache/zig
as a parameteror
-ffuzz
to not require acache-dir
parameter for fuzzing.The text was updated successfully, but these errors were encountered: