aboutsummaryrefslogtreecommitdiff
path: root/lib/std/process.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2022-09-14 18:02:21 -0400
committerGitHub <noreply@github.com>2022-09-14 18:02:21 -0400
commitd834b180118cf336b09b8f664e294ec2222e6d16 (patch)
tree1c3450ba81bed2e4125bf21e21ce2e03631ca53e /lib/std/process.zig
parent61aaef0b074dc2567e4c35c9cb55cb042c18d065 (diff)
parent85b10eb07c27d021804473ee54a0b5942e4784d5 (diff)
downloadzig-d834b180118cf336b09b8f664e294ec2222e6d16.tar.gz
zig-d834b180118cf336b09b8f664e294ec2222e6d16.zip
Merge pull request #11633 from SpexGuy
Remove `std.testing.zig_exe_path` in favor of `ZIG_EXE` environment variable
Diffstat (limited to 'lib/std/process.zig')
-rw-r--r--lib/std/process.zig1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/std/process.zig b/lib/std/process.zig
index d8604edab8..2c51ec2d60 100644
--- a/lib/std/process.zig
+++ b/lib/std/process.zig
@@ -822,7 +822,6 @@ test "args iterator" {
const given_suffix = std.fs.path.basename(prog_name);
try testing.expect(mem.eql(u8, expected_suffix, given_suffix));
- try testing.expect(it.skip()); // Skip over zig_exe_path, passed to the test runner
try testing.expect(it.next() == null);
try testing.expect(!it.skip());
}