Skip to content

Commit 3f63f52

Browse files
committed
Don't pass an unused --color to compiletest
This flag was an artifact of compiletest's old libtest-based test executor, and currently doesn't influence compiletest's output at all.
1 parent c4dc70e commit 3f63f52

File tree

2 files changed

+0
-3
lines changed
  • src

2 files changed

+0
-3
lines changed

src/bootstrap/src/core/build_steps/test.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2401,7 +2401,6 @@ Please disable assertions with `rust.debug-assertions = false`.
24012401
let git_config = builder.config.git_config();
24022402
cmd.arg("--nightly-branch").arg(git_config.nightly_branch);
24032403
cmd.arg("--git-merge-commit-email").arg(git_config.git_merge_commit_email);
2404-
cmd.force_coloring_in_ci();
24052404

24062405
#[cfg(feature = "build-metrics")]
24072406
builder.metrics.begin_test_suite(

src/tools/compiletest/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,6 @@ fn parse_config(args: Vec<String>) -> Config {
136136
)
137137
.optflag("", "fail-fast", "stop as soon as possible after any test fails")
138138
.optopt("", "target", "the target to build for", "TARGET")
139-
// FIXME: Should be removed once `bootstrap` will be updated to not use this option.
140-
.optopt("", "color", "coloring: auto, always, never", "WHEN")
141139
.optopt("", "host", "the host to build for", "HOST")
142140
.optopt("", "cdb", "path to CDB to use for CDB debuginfo tests", "PATH")
143141
.optopt("", "gdb", "path to GDB to use for GDB debuginfo tests", "PATH")

0 commit comments

Comments
 (0)