Include --run in stamp hash

This commit is contained in:
Tyler Mandry 2021-04-29 00:20:21 +00:00
parent 0b2e908691
commit e282fd045a

View file

@ -259,6 +259,7 @@ pub fn run(config: Config, testpaths: &TestPaths, revision: Option<&str>) {
pub fn compute_stamp_hash(config: &Config) -> String {
let mut hash = DefaultHasher::new();
config.stage_id.hash(&mut hash);
config.run.hash(&mut hash);
match config.debugger {
Some(Debugger::Cdb) => {