Skip to content

Commit 96f8dbe

Browse files
committed
compiletest: Enable new-output-capture by default
1 parent 52618eb commit 96f8dbe

File tree

1 file changed

+1
-1
lines changed
  • src/tools/compiletest/src

1 file changed

+1
-1
lines changed

src/tools/compiletest/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ pub fn parse_config(args: Vec<String>) -> Config {
472472
let value = matches
473473
.opt_str("new-output-capture")
474474
.or_else(|| env::var("COMPILETEST_NEW_OUTPUT_CAPTURE").ok())
475-
.unwrap_or_else(|| "off".to_owned());
475+
.unwrap_or_else(|| "on".to_owned());
476476
parse_bool_option(&value)
477477
.unwrap_or_else(|| panic!("unknown `--new-output-capture` value `{value}` given"))
478478
},

0 commit comments

Comments
 (0)