Skip to content

Commit 4a631b5

Browse files
committed
Fix rebase conflict
1 parent 4865ccc commit 4a631b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tools/compiletest/src/runtest.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -4648,12 +4648,12 @@ impl<'test> TestCx<'test> {
46484648
}
46494649

46504650
// If `compare-output-lines-by-subset` is not explicitly enabled then
4651-
// auto-enable it when a `runtool` is in use since wrapper tools might
4651+
// auto-enable it when a `runner` is in use since wrapper tools might
46524652
// provide extra output on failure, for example a WebAssembly runtime
46534653
// might print the stack trace of an `unreachable` instruction by
46544654
// default.
46554655
let compare_output_by_lines =
4656-
self.props.compare_output_lines_by_subset || self.config.runtool.is_some();
4656+
self.props.compare_output_lines_by_subset || self.config.runner.is_some();
46574657

46584658
let tmp;
46594659
let (expected, actual): (&str, &str) = if compare_output_by_lines {

0 commit comments

Comments
 (0)