Zig Version
0.17.0-dev.3462+764760df6
Steps to Reproduce and Observed Behavior
Add ConfigHeader to the test block in lib/std/Build/Step.zig:
test{_=CheckFile;_=ConfigHeader;// add this line_=Fail;...Then run:
zig build test-std -Dtest-filter="expand_variables_autoconf_at simple cases" -Dskip-non-native -Dno-lib -Dskip-release
Observed Behavior:
Compilation fails, test code is using old APIs.
Expected Behavior
ConfigHeader should be included in the test block in Step.zig alongside the other step modules, and its tests should be update to use current API signatures so they compile and run.
### Zig Version
0.17.0-dev.3462+764760df6
### Steps to Reproduce and Observed Behavior
Add ConfigHeader to the test block in lib/std/Build/Step.zig:
```zig
test {
_ = CheckFile;
_ = ConfigHeader; // add this line
_ = Fail;
...
```
Then run:
```
zig build test-std -Dtest-filter="expand_variables_autoconf_at simple cases" -Dskip-non-native -Dno-lib -Dskip-release
```
Observed Behavior:
Compilation fails, test code is using old APIs.
### Expected Behavior
ConfigHeader should be included in the test block in Step.zig alongside the other step modules, and its tests should be update to use current API signatures so they compile and run.