From 8ad6f512013a27e338c27c3948ade40ecfc89173 Mon Sep 17 00:00:00 2001 From: Andreas Herrmann Date: Sat, 25 Nov 2023 17:02:18 +0100 Subject: [PATCH] Fix typo in the test case description --- .../integration_tests/integration_tests_runner.zig | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/zig/tests/integration_tests/integration_tests_runner.zig b/zig/tests/integration_tests/integration_tests_runner.zig index 8cc113b1..1b310eb4 100644 --- a/zig/tests/integration_tests/integration_tests_runner.zig +++ b/zig/tests/integration_tests/integration_tests_runner.zig @@ -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; }