Commit ea46bd2772

Alex Rønne Petersen <alex@alexrp.com>
2025-10-04 21:55:39
test: move standalone/options/ to cli/options/
It's now used only by test-cli, so make that clear.
1 parent 5bbbc8d
Changed files (3)
test
test/standalone/options/src/main.zig → test/cli/options/src/main.zig
File renamed without changes
test/standalone/options/build.zig → test/cli/options/build.zig
File renamed without changes
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");