2021-12-03 00:03:32 +00:00
|
|
|
#![cfg(feature = "macros")]
|
|
|
|
|
2020-06-26 09:35:34 +00:00
|
|
|
#[rustversion::stable]
|
2019-06-04 05:17:07 +00:00
|
|
|
#[test]
|
|
|
|
fn test_compile_errors() {
|
2021-04-27 07:13:27 +00:00
|
|
|
// stable - require all tests to pass
|
|
|
|
_test_compile_errors()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[rustversion::nightly]
|
|
|
|
#[test]
|
|
|
|
fn test_compile_errors() {
|
|
|
|
// nightly - don't care if test output is potentially wrong, to avoid churn in PyO3's CI thanks
|
|
|
|
// to diagnostics changing on nightly.
|
|
|
|
let _ = std::panic::catch_unwind(_test_compile_errors);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn _test_compile_errors() {
|
2019-06-04 05:17:07 +00:00
|
|
|
let t = trybuild::TestCases::new();
|
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");
|
2021-11-16 19:31:30 +00:00
|
|
|
t.compile_fail("tests/ui/invalid_pyclass_enum.rs");
|
|
|
|
t.compile_fail("tests/ui/invalid_pyclass_item.rs");
|
2021-03-09 23:37:01 +00:00
|
|
|
t.compile_fail("tests/ui/invalid_pyfunctions.rs");
|
2021-01-09 17:33:28 +00:00
|
|
|
t.compile_fail("tests/ui/invalid_pymethods.rs");
|
2020-06-27 13:49:46 +00:00
|
|
|
t.compile_fail("tests/ui/invalid_pymethod_names.rs");
|
2021-11-19 13:33:56 +00:00
|
|
|
t.compile_fail("tests/ui/invalid_pymodule_args.rs");
|
2021-11-18 11:38:47 +00:00
|
|
|
t.compile_fail("tests/ui/missing_clone.rs");
|
2020-06-26 09:35:34 +00:00
|
|
|
t.compile_fail("tests/ui/reject_generics.rs");
|
2021-12-23 21:17:33 +00:00
|
|
|
t.compile_fail("tests/ui/not_send.rs");
|
2021-12-31 13:11:02 +00:00
|
|
|
t.compile_fail("tests/ui/invalid_pymethod_proto_args.rs");
|
2020-06-26 09:35:34 +00:00
|
|
|
|
2020-12-31 15:46:54 +00:00
|
|
|
tests_rust_1_49(&t);
|
2021-09-12 17:07:24 +00:00
|
|
|
tests_rust_1_55(&t);
|
2021-10-22 22:16:39 +00:00
|
|
|
tests_rust_1_56(&t);
|
2021-12-03 23:29:02 +00:00
|
|
|
tests_rust_1_57(&t);
|
2021-02-10 15:07:25 +00:00
|
|
|
|
2020-12-31 15:46:54 +00:00
|
|
|
#[rustversion::since(1.49)]
|
|
|
|
fn tests_rust_1_49(t: &trybuild::TestCases) {
|
2021-04-17 21:22:06 +00:00
|
|
|
t.compile_fail("tests/ui/deprecations.rs");
|
2020-08-28 02:29:38 +00:00
|
|
|
}
|
2020-12-31 15:46:54 +00:00
|
|
|
#[rustversion::before(1.49)]
|
|
|
|
fn tests_rust_1_49(_t: &trybuild::TestCases) {}
|
2021-05-06 22:07:19 +00:00
|
|
|
|
2021-09-12 17:07:24 +00:00
|
|
|
#[rustversion::since(1.55)]
|
|
|
|
fn tests_rust_1_55(t: &trybuild::TestCases) {
|
|
|
|
t.compile_fail("tests/ui/invalid_pymethod_receiver.rs");
|
2021-10-22 22:16:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[rustversion::before(1.55)]
|
|
|
|
fn tests_rust_1_55(_t: &trybuild::TestCases) {}
|
|
|
|
|
|
|
|
#[rustversion::since(1.56)]
|
|
|
|
fn tests_rust_1_56(t: &trybuild::TestCases) {
|
|
|
|
t.compile_fail("tests/ui/invalid_closure.rs");
|
|
|
|
t.compile_fail("tests/ui/invalid_result_conversion.rs");
|
|
|
|
t.compile_fail("tests/ui/pyclass_send.rs");
|
2021-07-30 22:30:56 +00:00
|
|
|
|
|
|
|
#[cfg(Py_LIMITED_API)]
|
|
|
|
t.compile_fail("tests/ui/abi3_nativetype_inheritance.rs");
|
2021-05-06 22:07:19 +00:00
|
|
|
}
|
2021-10-22 22:16:39 +00:00
|
|
|
|
|
|
|
#[rustversion::before(1.56)]
|
|
|
|
fn tests_rust_1_56(_t: &trybuild::TestCases) {}
|
2021-12-03 23:29:02 +00:00
|
|
|
|
|
|
|
#[rustversion::since(1.57)]
|
|
|
|
fn tests_rust_1_57(t: &trybuild::TestCases) {
|
|
|
|
t.compile_fail("tests/ui/invalid_argument_attributes.rs");
|
|
|
|
t.compile_fail("tests/ui/invalid_frompy_derive.rs");
|
|
|
|
t.compile_fail("tests/ui/static_ref.rs");
|
|
|
|
t.compile_fail("tests/ui/wrong_aspyref_lifetimes.rs");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[rustversion::before(1.57)]
|
|
|
|
fn tests_rust_1_57(_t: &trybuild::TestCases) {}
|
2019-06-04 05:17:07 +00:00
|
|
|
}
|