test: move standalone/options/ to cli/options/

It's now used only by test-cli, so make that clear.
This commit is contained in:
Alex Rønne Petersen 2025-10-04 21:55:39 +02:00
parent 5bbbc8d299
commit ea46bd2772
No known key found for this signature in database
3 changed files with 1 additions and 1 deletions

View File

@ -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");