Set up some trybuild tests

This commit is contained in:
David Tolnay 2019-10-11 11:11:32 -07:00
parent ab48dd19d3
commit 39d2ae53ba
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82
8 changed files with 53 additions and 0 deletions

View file

@ -14,6 +14,8 @@ thiserror-impl = { version = "=1.0.0", path = "impl" }
[dev-dependencies]
anyhow = "1.0"
rustversion = "1.0"
trybuild = "1.0"
[workspace]
members = ["impl"]

6
tests/compiletest.rs Normal file
View file

@ -0,0 +1,6 @@
#[rustversion::attr(not(nightly), ignore)]
#[test]
fn ui() {
let t = trybuild::TestCases::new();
t.compile_fail("tests/ui/*.rs");
}

View file

@ -0,0 +1,8 @@
use thiserror::Error;
#[derive(Error, Debug)]
#[error("...")]
#[error("...")]
pub struct Error;
fn main() {}

View file

@ -0,0 +1,5 @@
error: only one #[error(...)] attribute is allowed
--> $DIR/duplicate-fmt.rs:5:1
|
5 | #[error("...")]
| ^^^^^^^^^^^^^^^

10
tests/ui/missing-fmt.rs Normal file
View file

@ -0,0 +1,10 @@
use thiserror::Error;
#[derive(Error, Debug)]
pub enum Error {
#[error("...")]
A(usize),
B(usize),
}
fn main() {}

View file

@ -0,0 +1,5 @@
error: missing #[error("...")] display attribute
--> $DIR/missing-fmt.rs:7:5
|
7 | B(usize),
| ^^^^^^^^

9
tests/ui/union.rs Normal file
View file

@ -0,0 +1,9 @@
use thiserror::Error;
#[derive(Error)]
pub union U {
msg: &'static str,
num: usize,
}
fn main() {}

8
tests/ui/union.stderr Normal file
View file

@ -0,0 +1,8 @@
error: union as errors are not supported
--> $DIR/union.rs:4:1
|
4 | / pub union U {
5 | | msg: &'static str,
6 | | num: usize,
7 | | }
| |_^