about summary refs log tree commit diff
diff options
context:
space:
mode:
authorZalathar <Zalathar@users.noreply.github.com>2025-09-15 16:36:00 +1000
committerZalathar <Zalathar@users.noreply.github.com>2025-09-15 16:36:00 +1000
commit96f8dbe1b33691a949b23a005581b66c6f7e4cbf (patch)
treef37be72b784d5a43cb5e110a2cc55115548218c5
parent52618eb338609df44978b0ca4451ab7941fd1c7a (diff)
downloadrust-96f8dbe1b33691a949b23a005581b66c6f7e4cbf.tar.gz
rust-96f8dbe1b33691a949b23a005581b66c6f7e4cbf.zip
compiletest: Enable new-output-capture by default
-rw-r--r--src/tools/compiletest/src/lib.rs2
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"))
         },