Skip to content

Commit

Permalink
reference.rc test: Don't run preprocessor to avoid dependence on clang
Browse files Browse the repository at this point in the history
The preprocessor is not necessary for the test to pass, so this avoidance just means that the test doesn't require the system to have a clang installation available.
  • Loading branch information
squeek502 committed Aug 3, 2023
1 parent daba9c4 commit f9654e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/reference.zig
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ test "reference.rc" {
var result = try utils.getResinatorResult(std.testing.allocator, reference_rc, .{
.cwd = tmp.dir,
.cwd_path = tmp_path,
.run_preprocessor = true,
.run_preprocessor = false,
});
defer result.deinit(std.testing.allocator);

Expand Down

0 comments on commit f9654e1

Please sign in to comment.