diff options
| author | Tyler Mandry <tmandry@gmail.com> | 2021-04-29 00:20:21 +0000 |
|---|---|---|
| committer | Tyler Mandry <tmandry@gmail.com> | 2021-04-30 04:10:15 +0000 |
| commit | e282fd045a96793fb060c224887b9807370bd9d1 (patch) | |
| tree | 6b2e3a56295ac4e00a7329f4a7c01095ff5ee654 | |
| parent | 0b2e908691a2d5d35ebd877a2c3339b230b81eb0 (diff) | |
| download | rust-e282fd045a96793fb060c224887b9807370bd9d1.tar.gz rust-e282fd045a96793fb060c224887b9807370bd9d1.zip | |
Include --run in stamp hash
| -rw-r--r-- | src/tools/compiletest/src/runtest.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tools/compiletest/src/runtest.rs b/src/tools/compiletest/src/runtest.rs index a044c4425b4..c87a0c8c8d9 100644 --- a/src/tools/compiletest/src/runtest.rs +++ b/src/tools/compiletest/src/runtest.rs @@ -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) => { |
