2020-06-26 09:35:34 +00:00
|
|
|
#[rustversion::stable]
|
2019-06-04 05:17:07 +00:00
|
|
|
#[test]
|
|
|
|
fn test_compile_errors() {
|
|
|
|
let t = trybuild::TestCases::new();
|
2020-08-30 10:54:13 +00:00
|
|
|
t.compile_fail("tests/ui/invalid_frompy_derive.rs");
|
2020-06-26 09:35:34 +00:00
|
|
|
t.compile_fail("tests/ui/invalid_macro_args.rs");
|
2020-09-03 15:27:24 +00:00
|
|
|
t.compile_fail("tests/ui/invalid_need_module_arg_position.rs");
|
2020-06-26 09:35:34 +00:00
|
|
|
t.compile_fail("tests/ui/invalid_property_args.rs");
|
|
|
|
t.compile_fail("tests/ui/invalid_pyclass_args.rs");
|
2020-06-27 13:49:46 +00:00
|
|
|
t.compile_fail("tests/ui/invalid_pymethod_names.rs");
|
2020-06-26 09:35:34 +00:00
|
|
|
t.compile_fail("tests/ui/reject_generics.rs");
|
|
|
|
t.compile_fail("tests/ui/wrong_aspyref_lifetimes.rs");
|
|
|
|
|
2020-08-28 02:29:38 +00:00
|
|
|
tests_rust_1_43(&t);
|
|
|
|
tests_rust_1_46(&t);
|
2020-06-18 09:49:43 +00:00
|
|
|
|
2020-06-19 05:55:06 +00:00
|
|
|
#[rustversion::since(1.43)]
|
2020-08-28 02:29:38 +00:00
|
|
|
fn tests_rust_1_43(t: &trybuild::TestCases) {
|
2020-06-18 09:49:43 +00:00
|
|
|
t.compile_fail("tests/ui/static_ref.rs");
|
|
|
|
}
|
|
|
|
#[rustversion::before(1.43)]
|
2020-08-28 02:29:38 +00:00
|
|
|
fn tests_rust_1_43(_t: &trybuild::TestCases) {}
|
|
|
|
|
|
|
|
#[rustversion::since(1.46)]
|
|
|
|
fn tests_rust_1_46(t: &trybuild::TestCases) {
|
|
|
|
t.compile_fail("tests/ui/invalid_pymethod_receiver.rs");
|
|
|
|
t.compile_fail("tests/ui/invalid_result_conversion.rs");
|
|
|
|
t.compile_fail("tests/ui/missing_clone.rs");
|
|
|
|
}
|
|
|
|
#[rustversion::before(1.46)]
|
|
|
|
fn tests_rust_1_46(_t: &trybuild::TestCases) {}
|
2019-06-04 05:17:07 +00:00
|
|
|
}
|