commit ea46bd2772daa397e7287352f60da062a1ea4247 (tree)
parent 5bbbc8d29906aaaf3ffbe43ee10d9bc7acc321ea
Author: Alex Rønne Petersen <alex@alexrp.com>
Date: Sat, 4 Oct 2025 21:55:39 +0200
test: move standalone/options/ to cli/options/
It's now used only by test-cli, so make that clear.
Diffstat:
3 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/standalone/options/build.zig b/test/cli/options/build.zig
diff --git a/test/standalone/options/src/main.zig b/test/cli/options/src/main.zig
diff --git a/test/tests.zig b/test/tests.zig
@@ -2204,7 +2204,7 @@ pub fn addCliTests(b: *std.Build) *Step {
"-Dstring=hello",
});
run_test.addArg("--build-file");
- run_test.addFileArg(b.path("test/standalone/options/build.zig"));
+ run_test.addFileArg(b.path("test/cli/options/build.zig"));
run_test.addArg("--cache-dir");
run_test.addFileArg(.{ .cwd_relative = b.cache_root.join(b.allocator, &.{}) catch @panic("OOM") });
run_test.setName("test build options");