Tests that Zig’s std.process.ArgIteratorWindows is compatible with both the MSVC and MinGW C runtimes’ argv splitting algorithms.
The method of testing is:
- Compile a C file with
wmainas its entry point - The C
wmaincalls a Zig-implementedverifyfunction that takes theargvfromwmainand compares it to the argv gotten fromstd.proccess.argsAlloc(which takeskernel32.GetCommandLineW()and splits it) - The compiled C program is spawned continuously as a child process by the implementation in
fuzz.zigwith randomly generated command lines- On Windows, the ‘application name’ and the ‘command line’ are disjoint concepts. That is, you can spawn
foo.exebut set the command line tobar.exe, andCreateProcessWwill spawnfoo.exebutargv[0]will bebar.exe. This quirk allows us to test arbitraryargv[0]values as well which otherwise wouldn’t be possible.
- On Windows, the ‘application name’ and the ‘command line’ are disjoint concepts. That is, you can spawn
Note: This is intentionally testing against the C runtime argv splitting and not CommandLineToArgvW, since the C runtime argv splitting was updated in 2008 but CommandLineToArgvW still uses the pre-2008 algorithm (which differs in both argv[0] rules and ""; see here for details)
In addition to being run during zig build test-standalone, this test can be run on its own via zig build test from within this directory.
When run on its own:
-Diterations=<num>can be used to set the max fuzzing iterations, and-Diterations=0can be used to fuzz indefinitely-Dseed=<num>can be used to set the PRNG seed for fuzz testing. If not provided, then the seed is chosen at random duringbuild.zigcompilation.
On failure, the number of iterations and the seed can be seen in the failing command, e.g. in path\to\fuzz.exe path\to\verify-msvc.exe 100 2780392459403250529, the iterations is 100 and the seed is 2780392459403250529.