aboutsummaryrefslogtreecommitdiff
path: root/src/main.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.zig')
-rw-r--r--src/main.zig6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/main.zig b/src/main.zig
index ee05c78c13..0e739d4ca1 100644
--- a/src/main.zig
+++ b/src/main.zig
@@ -668,10 +668,8 @@ const usage_build_generic =
\\
\\Test Options:
\\ --test-filter [text] Skip tests that do not match any filter
- \\ --test-name-prefix [text] Add prefix to all tests
\\ --test-cmd [arg] Specify test execution command one arg at a time
\\ --test-cmd-bin Appends test binary path to test cmd args
- \\ --test-evented-io Runs the test in evented I/O mode
\\ --test-no-exec Compiles test binary without running it
\\ --test-runner [path] Specify a custom test runner
\\
@@ -896,7 +894,6 @@ fn buildOutputType(
var build_id: ?std.zig.BuildId = null;
var runtime_args_start: ?usize = null;
var test_filters: std.ArrayListUnmanaged([]const u8) = .empty;
- var test_name_prefix: ?[]const u8 = null;
var test_runner_path: ?[]const u8 = null;
var override_local_cache_dir: ?[]const u8 = try EnvVar.ZIG_LOCAL_CACHE_DIR.get(arena);
var override_global_cache_dir: ?[]const u8 = try EnvVar.ZIG_GLOBAL_CACHE_DIR.get(arena);
@@ -1326,8 +1323,6 @@ fn buildOutputType(
create_module.libc_paths_file = args_iter.nextOrFatal();
} else if (mem.eql(u8, arg, "--test-filter")) {
try test_filters.append(arena, args_iter.nextOrFatal());
- } else if (mem.eql(u8, arg, "--test-name-prefix")) {
- test_name_prefix = args_iter.nextOrFatal();
} else if (mem.eql(u8, arg, "--test-runner")) {
test_runner_path = args_iter.nextOrFatal();
} else if (mem.eql(u8, arg, "--test-cmd")) {
@@ -3495,7 +3490,6 @@ fn buildOutputType(
.stack_report = stack_report,
.build_id = build_id,
.test_filters = test_filters.items,
- .test_name_prefix = test_name_prefix,
.test_runner_path = test_runner_path,
.cache_mode = cache_mode,
.subsystem = subsystem,