diff options
| author | Zalathar <Zalathar@users.noreply.github.com> | 2025-09-15 16:36:00 +1000 |
|---|---|---|
| committer | Zalathar <Zalathar@users.noreply.github.com> | 2025-09-15 16:36:00 +1000 |
| commit | 96f8dbe1b33691a949b23a005581b66c6f7e4cbf (patch) | |
| tree | f37be72b784d5a43cb5e110a2cc55115548218c5 | |
| parent | 52618eb338609df44978b0ca4451ab7941fd1c7a (diff) | |
| download | rust-96f8dbe1b33691a949b23a005581b66c6f7e4cbf.tar.gz rust-96f8dbe1b33691a949b23a005581b66c6f7e4cbf.zip | |
compiletest: Enable new-output-capture by default
| -rw-r--r-- | src/tools/compiletest/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/compiletest/src/lib.rs b/src/tools/compiletest/src/lib.rs index f647f96a9bf..17a60ace804 100644 --- a/src/tools/compiletest/src/lib.rs +++ b/src/tools/compiletest/src/lib.rs @@ -472,7 +472,7 @@ pub fn parse_config(args: Vec<String>) -> Config { let value = matches .opt_str("new-output-capture") .or_else(|| env::var("COMPILETEST_NEW_OUTPUT_CAPTURE").ok()) - .unwrap_or_else(|| "off".to_owned()); + .unwrap_or_else(|| "on".to_owned()); parse_bool_option(&value) .unwrap_or_else(|| panic!("unknown `--new-output-capture` value `{value}` given")) }, |
