Vendor things
This commit is contained in:
parent
5deceec006
commit
977e3c17e5
19434 changed files with 10682014 additions and 0 deletions
7
third-party/vendor/rustversion/tests/compiletest.rs
vendored
Normal file
7
third-party/vendor/rustversion/tests/compiletest.rs
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
#[rustversion::attr(not(nightly), ignore)]
|
||||
#[cfg_attr(miri, ignore)]
|
||||
#[test]
|
||||
fn ui() {
|
||||
let t = trybuild::TestCases::new();
|
||||
t.compile_fail("tests/ui/*.rs");
|
||||
}
|
||||
39
third-party/vendor/rustversion/tests/test_const.rs
vendored
Normal file
39
third-party/vendor/rustversion/tests/test_const.rs
vendored
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
#![allow(clippy::semicolon_if_nothing_returned)] // https://github.com/rust-lang/rust-clippy/issues/7324
|
||||
|
||||
#[rustversion::attr(all(), const)]
|
||||
fn _basic() {}
|
||||
const _BASIC: () = _basic();
|
||||
|
||||
#[rustversion::attr(all(), const)]
|
||||
unsafe fn _unsafe() {}
|
||||
const _UNSAFE: () = unsafe { _unsafe() };
|
||||
|
||||
macro_rules! item {
|
||||
($i:item) => {
|
||||
#[rustversion::attr(all(), const)]
|
||||
$i
|
||||
};
|
||||
}
|
||||
|
||||
item! {fn _item() {}}
|
||||
const _ITEM: () = _item();
|
||||
|
||||
macro_rules! ident {
|
||||
($fn:ident) => {
|
||||
#[rustversion::attr(all(), const)]
|
||||
$fn _ident() {}
|
||||
};
|
||||
}
|
||||
|
||||
ident! {fn}
|
||||
const _IDENT: () = _ident();
|
||||
|
||||
#[rustversion::attr(all(), const)]
|
||||
/// doc
|
||||
fn _doc_below() {}
|
||||
const _DOC_BELOW: () = _doc_below();
|
||||
|
||||
/// doc
|
||||
#[rustversion::attr(all(), const)]
|
||||
fn _doc_above() {}
|
||||
const _DOC_ABOVE: () = _doc_above();
|
||||
20
third-party/vendor/rustversion/tests/test_eval.rs
vendored
Normal file
20
third-party/vendor/rustversion/tests/test_eval.rs
vendored
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#[rustversion::any(
|
||||
stable,
|
||||
stable(1.34),
|
||||
stable(1.34.0),
|
||||
beta,
|
||||
nightly,
|
||||
nightly(2020-02-25),
|
||||
since(1.34),
|
||||
since(2020-02-25),
|
||||
before(1.34),
|
||||
before(2020-02-25),
|
||||
not(nightly),
|
||||
all(stable, beta, nightly),
|
||||
)]
|
||||
fn success() {}
|
||||
|
||||
#[test]
|
||||
fn test() {
|
||||
success();
|
||||
}
|
||||
103
third-party/vendor/rustversion/tests/test_parse.rs
vendored
Normal file
103
third-party/vendor/rustversion/tests/test_parse.rs
vendored
Normal file
|
|
@ -0,0 +1,103 @@
|
|||
#![allow(
|
||||
clippy::derive_partial_eq_without_eq,
|
||||
clippy::enum_glob_use,
|
||||
clippy::must_use_candidate
|
||||
)]
|
||||
|
||||
include!("../build/rustc.rs");
|
||||
|
||||
#[test]
|
||||
fn test_parse() {
|
||||
let cases = &[
|
||||
(
|
||||
"rustc 1.0.0 (a59de37e9 2015-05-13) (built 2015-05-14)",
|
||||
Version {
|
||||
minor: 0,
|
||||
patch: 0,
|
||||
channel: Stable,
|
||||
},
|
||||
),
|
||||
(
|
||||
"rustc 1.18.0",
|
||||
Version {
|
||||
minor: 18,
|
||||
patch: 0,
|
||||
channel: Stable,
|
||||
},
|
||||
),
|
||||
(
|
||||
"rustc 1.24.1 (d3ae9a9e0 2018-02-27)",
|
||||
Version {
|
||||
minor: 24,
|
||||
patch: 1,
|
||||
channel: Stable,
|
||||
},
|
||||
),
|
||||
(
|
||||
"rustc 1.35.0-beta.3 (c13114dc8 2019-04-27)",
|
||||
Version {
|
||||
minor: 35,
|
||||
patch: 0,
|
||||
channel: Beta,
|
||||
},
|
||||
),
|
||||
(
|
||||
"rustc 1.36.0-nightly (938d4ffe1 2019-04-27)",
|
||||
Version {
|
||||
minor: 36,
|
||||
patch: 0,
|
||||
channel: Nightly(Date {
|
||||
year: 2019,
|
||||
month: 4,
|
||||
day: 27,
|
||||
}),
|
||||
},
|
||||
),
|
||||
(
|
||||
"rustc 1.36.0-dev",
|
||||
Version {
|
||||
minor: 36,
|
||||
patch: 0,
|
||||
channel: Dev,
|
||||
},
|
||||
),
|
||||
(
|
||||
"rustc 1.36.0-nightly",
|
||||
Version {
|
||||
minor: 36,
|
||||
patch: 0,
|
||||
channel: Dev,
|
||||
},
|
||||
),
|
||||
(
|
||||
"warning: invalid logging spec 'warning', ignoring it
|
||||
rustc 1.30.0-nightly (3bc2ca7e4 2018-09-20)",
|
||||
Version {
|
||||
minor: 30,
|
||||
patch: 0,
|
||||
channel: Nightly(Date {
|
||||
year: 2018,
|
||||
month: 9,
|
||||
day: 20,
|
||||
}),
|
||||
},
|
||||
),
|
||||
(
|
||||
"rustc 1.52.1-nightly (gentoo)",
|
||||
Version {
|
||||
minor: 52,
|
||||
patch: 1,
|
||||
channel: Dev,
|
||||
},
|
||||
),
|
||||
];
|
||||
|
||||
for (string, expected) in cases {
|
||||
match parse(string) {
|
||||
ParseResult::Success(version) => assert_eq!(version, *expected),
|
||||
ParseResult::OopsClippy | ParseResult::Unrecognized => {
|
||||
panic!("unrecognized: {:?}", string);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
7
third-party/vendor/rustversion/tests/ui/bad-bound.rs
vendored
Normal file
7
third-party/vendor/rustversion/tests/ui/bad-bound.rs
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
#[rustversion::since(stable)]
|
||||
struct S;
|
||||
|
||||
#[rustversion::any(since(stable))]
|
||||
struct S;
|
||||
|
||||
fn main() {}
|
||||
11
third-party/vendor/rustversion/tests/ui/bad-bound.stderr
vendored
Normal file
11
third-party/vendor/rustversion/tests/ui/bad-bound.stderr
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
error: expected rustc release number like 1.31, or nightly date like 2020-02-25
|
||||
--> tests/ui/bad-bound.rs:1:22
|
||||
|
|
||||
1 | #[rustversion::since(stable)]
|
||||
| ^^^^^^
|
||||
|
||||
error: expected rustc release number like 1.31, or nightly date like 2020-02-25
|
||||
--> tests/ui/bad-bound.rs:4:26
|
||||
|
|
||||
4 | #[rustversion::any(since(stable))]
|
||||
| ^^^^^^
|
||||
7
third-party/vendor/rustversion/tests/ui/bad-date.rs
vendored
Normal file
7
third-party/vendor/rustversion/tests/ui/bad-date.rs
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
#[rustversion::nightly(stable)]
|
||||
struct S;
|
||||
|
||||
#[rustversion::any(nightly(stable))]
|
||||
struct S;
|
||||
|
||||
fn main() {}
|
||||
11
third-party/vendor/rustversion/tests/ui/bad-date.stderr
vendored
Normal file
11
third-party/vendor/rustversion/tests/ui/bad-date.stderr
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
error: expected nightly date, like 2020-02-25
|
||||
--> tests/ui/bad-date.rs:1:24
|
||||
|
|
||||
1 | #[rustversion::nightly(stable)]
|
||||
| ^^^^^^
|
||||
|
||||
error: expected nightly date, like 2020-02-25
|
||||
--> tests/ui/bad-date.rs:4:28
|
||||
|
|
||||
4 | #[rustversion::any(nightly(stable))]
|
||||
| ^^^^^^
|
||||
7
third-party/vendor/rustversion/tests/ui/bad-not.rs
vendored
Normal file
7
third-party/vendor/rustversion/tests/ui/bad-not.rs
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
#[rustversion::any(not)]
|
||||
struct S;
|
||||
|
||||
#[rustversion::any(not, not)]
|
||||
struct S;
|
||||
|
||||
fn main() {}
|
||||
11
third-party/vendor/rustversion/tests/ui/bad-not.stderr
vendored
Normal file
11
third-party/vendor/rustversion/tests/ui/bad-not.stderr
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
error: expected `(` after `not`
|
||||
--> tests/ui/bad-not.rs:1:20
|
||||
|
|
||||
1 | #[rustversion::any(not)]
|
||||
| ^^^
|
||||
|
||||
error: expected `(`
|
||||
--> tests/ui/bad-not.rs:4:23
|
||||
|
|
||||
4 | #[rustversion::any(not, not)]
|
||||
| ^
|
||||
7
third-party/vendor/rustversion/tests/ui/bad-version.rs
vendored
Normal file
7
third-party/vendor/rustversion/tests/ui/bad-version.rs
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
#[rustversion::stable(nightly)]
|
||||
struct S;
|
||||
|
||||
#[rustversion::any(stable(nightly))]
|
||||
struct S;
|
||||
|
||||
fn main() {}
|
||||
11
third-party/vendor/rustversion/tests/ui/bad-version.stderr
vendored
Normal file
11
third-party/vendor/rustversion/tests/ui/bad-version.stderr
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
error: expected rustc release number, like 1.31
|
||||
--> tests/ui/bad-version.rs:1:23
|
||||
|
|
||||
1 | #[rustversion::stable(nightly)]
|
||||
| ^^^^^^^
|
||||
|
||||
error: expected rustc release number, like 1.31
|
||||
--> tests/ui/bad-version.rs:4:27
|
||||
|
|
||||
4 | #[rustversion::any(stable(nightly))]
|
||||
| ^^^^^^^
|
||||
4
third-party/vendor/rustversion/tests/ui/const-not-fn.rs
vendored
Normal file
4
third-party/vendor/rustversion/tests/ui/const-not-fn.rs
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
#[rustversion::attr(all(), const)]
|
||||
pub struct S;
|
||||
|
||||
fn main() {}
|
||||
5
third-party/vendor/rustversion/tests/ui/const-not-fn.stderr
vendored
Normal file
5
third-party/vendor/rustversion/tests/ui/const-not-fn.stderr
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
error: only allowed on a fn item
|
||||
--> tests/ui/const-not-fn.rs:1:28
|
||||
|
|
||||
1 | #[rustversion::attr(all(), const)]
|
||||
| ^^^^^
|
||||
Loading…
Add table
Add a link
Reference in a new issue