Skip to content

Commit

Permalink
Fix typo in the test case description
Browse files Browse the repository at this point in the history
  • Loading branch information
aherrmann committed Nov 25, 2023
1 parent 8f2d7f3 commit 8ad6f51
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions zig/tests/integration_tests/integration_tests_runner.zig
Original file line number Diff line number Diff line change
Expand Up @@ -180,19 +180,13 @@ test "zig_binary result should not contain the output base path in release_safe
try testBinaryShouldNotContainOutputBase("release_safe");
}

test "zig_binary result should not contain the output base path in release_fast mode" {
if (builtin.os.tag == .macos) {
// TODO[AH] Avoid output base path on MacOS.
// See https://github.com/aherrmann/rules_zig/issues/79
return error.SkipZigTest;
}

test "zig_binary result should not contain the output base path in release_small mode" {
try testBinaryShouldNotContainOutputBase("release_small");
}

test "zig_binary result should not contain the output base path in release_small mode" {
test "zig_binary result should not contain the output base path in release_fast mode" {
if (true) {
// TODO[AH] Avoid output base path in release_small mode.
// TODO[AH] Avoid output base path in release_fast mode.
// See https://github.com/aherrmann/rules_zig/issues/79
return error.SkipZigTest;
}
Expand Down

0 comments on commit 8ad6f51

Please sign in to comment.