Skip some test passes
This commit is contained in:
parent
edf0cac94b
commit
219f818c1b
@ -334,10 +334,12 @@ pub fn check_crate<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>)
|
||||
|
||||
})?;
|
||||
|
||||
tcx.sess.track_errors(|| {
|
||||
time(tcx.sess, "outlives testing", ||
|
||||
outlives::test::test_inferred_outlives(tcx));
|
||||
})?;
|
||||
if tcx.features().rustc_attrs {
|
||||
tcx.sess.track_errors(|| {
|
||||
time(tcx.sess, "outlives testing", ||
|
||||
outlives::test::test_inferred_outlives(tcx));
|
||||
})?;
|
||||
}
|
||||
|
||||
tcx.sess.track_errors(|| {
|
||||
time(tcx.sess, "impl wf inference", ||
|
||||
@ -349,10 +351,12 @@ pub fn check_crate<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>)
|
||||
coherence::check_coherence(tcx));
|
||||
})?;
|
||||
|
||||
tcx.sess.track_errors(|| {
|
||||
time(tcx.sess, "variance testing", ||
|
||||
variance::test::test_variance(tcx));
|
||||
})?;
|
||||
if tcx.features().rustc_attrs {
|
||||
tcx.sess.track_errors(|| {
|
||||
time(tcx.sess, "variance testing", ||
|
||||
variance::test::test_variance(tcx));
|
||||
})?;
|
||||
}
|
||||
|
||||
time(tcx.sess, "wf checking", || check::check_wf_new(tcx))?;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user