diff options
| author | Alex Rønne Petersen <alex@alexrp.com> | 2025-10-04 21:55:39 +0200 |
|---|---|---|
| committer | Alex Rønne Petersen <alex@alexrp.com> | 2025-10-04 21:55:39 +0200 |
| commit | ea46bd2772daa397e7287352f60da062a1ea4247 (patch) | |
| tree | a0fd9f6e8ca822ad9e897150af42339f9ba13ca4 /test | |
| parent | 5bbbc8d29906aaaf3ffbe43ee10d9bc7acc321ea (diff) | |
| download | zig-ea46bd2772daa397e7287352f60da062a1ea4247.tar.gz zig-ea46bd2772daa397e7287352f60da062a1ea4247.zip | |
test: move standalone/options/ to cli/options/
It's now used only by test-cli, so make that clear.
Diffstat (limited to 'test')
| -rw-r--r-- | test/cli/options/build.zig (renamed from test/standalone/options/build.zig) | 0 | ||||
| -rw-r--r-- | test/cli/options/src/main.zig (renamed from test/standalone/options/src/main.zig) | 0 | ||||
| -rw-r--r-- | test/tests.zig | 2 |
3 files changed, 1 insertions, 1 deletions
diff --git a/test/standalone/options/build.zig b/test/cli/options/build.zig index 5f1e496c4b..5f1e496c4b 100644 --- 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 index e2bbe254c5..e2bbe254c5 100644 --- a/test/standalone/options/src/main.zig +++ b/test/cli/options/src/main.zig diff --git a/test/tests.zig b/test/tests.zig index a6bd061f38..8e46fece21 100644 --- 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"); |
