Rollup merge of #61762 - Keruspe:rustbuild-libtest-fix, r=Mark-Simulacrum

rustbuild: fix libtest_stamp

Looks like an obvious copy/paste typo
This commit is contained in:
Mazdak Farrokhzad 2019-06-13 01:49:33 +02:00 committed by GitHub
commit 555b2d9250
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -787,7 +787,7 @@ impl<'a> Builder<'a> {
let libtest_stamp = match cmd {
"check" | "clippy" | "fix" => check::libtest_stamp(self, cmp, target),
_ => compile::libstd_stamp(self, cmp, target),
_ => compile::libtest_stamp(self, cmp, target),
};
let librustc_stamp = match cmd {