Skip to content

Commit

Permalink
Hash force_pass_mode when config.mode == Pretty.
Browse files Browse the repository at this point in the history
  • Loading branch information
Centril committed Jun 26, 2019
1 parent a60bbb0 commit 93077f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/compiletest/src/runtest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ pub fn compute_stamp_hash(config: &Config) -> String {
env::var_os("PYTHONPATH").hash(&mut hash);
}

if let Ui | RunPass | Incremental = config.mode {
if let Ui | RunPass | Incremental | Pretty = config.mode {
config.force_pass_mode.hash(&mut hash);
}

Expand Down

0 comments on commit 93077f3

Please sign in to comment.