1
Fork 0

Support // skip-codegen in header of ui tests

(just like how they behaved under previous run-pass semantics)
This commit is contained in:
Felix S. Klock II 2018-09-14 12:17:30 +02:00
parent ddb1a2afb7
commit ae0a53a39b

View file

@ -263,7 +263,7 @@ impl<'test> TestCx<'test> {
fn should_run_successfully(&self) -> bool {
match self.config.mode {
RunPass => true,
RunPass => !self.props.skip_codegen,
Ui => self.props.run_pass,
_ => unimplemented!(),
}