Skip to content

Commit 5f23750

Browse files
committed
remove fuzz
1 parent 373c028 commit 5f23750

File tree

1 file changed

+1
-16
lines changed

1 file changed

+1
-16
lines changed

build.zig

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ pub fn build(b: *std.Build) !void {
5858
const lsp = b.dependency("lsp_kit", .{});
5959

6060
const check = setupCheckStep(b, target, optimize, options, superhtml, folders, lsp);
61-
setupTestStep(b, target, superhtml, check);
61+
setupTestStep(b, superhtml, check);
6262
setupCliTool(b, target, optimize, options, superhtml, folders, lsp);
6363
setupWasmStep(b, optimize, options, superhtml, lsp);
6464
if (version == .tag) {
@@ -98,7 +98,6 @@ fn setupCheckStep(
9898
}
9999
fn setupTestStep(
100100
b: *std.Build,
101-
target: std.Build.ResolvedTarget,
102101
superhtml: *std.Build.Module,
103102
check: *std.Build.Step,
104103
) void {
@@ -113,20 +112,6 @@ fn setupTestStep(
113112

114113
const run_unit_tests = b.addRunArtifact(unit_tests);
115114
test_step.dependOn(&run_unit_tests.step);
116-
117-
const fuzz_tests = b.addTest(.{
118-
.root_module = b.createModule(.{
119-
.root_source_file = b.path("src/fuzz.zig"),
120-
.target = target,
121-
.optimize = .Debug,
122-
}),
123-
// .strip = true,
124-
// .filter = "nesting",
125-
});
126-
127-
fuzz_tests.root_module.addImport("superhtml", superhtml);
128-
const run_fuzz_tests = b.addRunArtifact(fuzz_tests);
129-
test_step.dependOn(&run_fuzz_tests.step);
130115
}
131116

132117
fn setupCliTool(

0 commit comments

Comments
 (0)