diff --git a/test/standalone/build.zig.zon b/test/standalone/build.zig.zon index 63724548a2..ac87c57c7b 100644 --- a/test/standalone/build.zig.zon +++ b/test/standalone/build.zig.zon @@ -15,10 +15,6 @@ .test_runner_module_imports = .{ .path = "test_runner_module_imports", }, - // https://github.com/ziglang/zig/issues/17483 - //.issue_13970 = .{ - // .path = "issue_13970", - //}, .shared_library = .{ .path = "shared_library", }, diff --git a/test/standalone/issue_13970/build.zig b/test/standalone/issue_13970/build.zig deleted file mode 100644 index bad94161af..0000000000 --- a/test/standalone/issue_13970/build.zig +++ /dev/null @@ -1,32 +0,0 @@ -const std = @import("std"); - -pub fn build(b: *std.Build) void { - const test_step = b.step("test", "Test it"); - b.default_step = test_step; - - const test1 = b.addTest(.{ - .root_module = b.createModule(.{ - .root_source_file = b.path("test_root/empty.zig"), - .target = b.graph.host, - }), - .test_runner = "src/main.zig", - }); - const test2 = b.addTest(.{ - .root_module = b.createModule(.{ - .root_source_file = b.path("src/empty.zig"), - .target = b.graph.host, - }), - .test_runner = "src/main.zig", - }); - const test3 = b.addTest(.{ - .root_module = b.createModule(.{ - .root_source_file = b.path("empty.zig"), - .target = b.graph.host, - }), - .test_runner = "src/main.zig", - }); - - test_step.dependOn(&b.addRunArtifact(test1).step); - test_step.dependOn(&b.addRunArtifact(test2).step); - test_step.dependOn(&b.addRunArtifact(test3).step); -} diff --git a/test/standalone/issue_13970/empty.zig b/test/standalone/issue_13970/empty.zig deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/test/standalone/issue_13970/src/empty.zig b/test/standalone/issue_13970/src/empty.zig deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/test/standalone/issue_13970/src/main.zig b/test/standalone/issue_13970/src/main.zig deleted file mode 100644 index d71320d46a..0000000000 --- a/test/standalone/issue_13970/src/main.zig +++ /dev/null @@ -1,8 +0,0 @@ -const std = @import("std"); -const package = @import("package.zig"); -const root = @import("root"); -const builtin = @import("builtin"); - -pub fn main() !void { - _ = package.decl; -} diff --git a/test/standalone/issue_13970/src/package.zig b/test/standalone/issue_13970/src/package.zig deleted file mode 100644 index 4f6037b38d..0000000000 --- a/test/standalone/issue_13970/src/package.zig +++ /dev/null @@ -1 +0,0 @@ -pub const decl = 0; diff --git a/test/standalone/issue_13970/test_root/empty.zig b/test/standalone/issue_13970/test_root/empty.zig deleted file mode 100644 index e69de29bb2..0000000000