aboutsummaryrefslogtreecommitdiff
path: root/tests/compiletest.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/compiletest.rs')
-rw-r--r--tests/compiletest.rs10
1 files changed, 2 insertions, 8 deletions
diff --git a/tests/compiletest.rs b/tests/compiletest.rs
index 85b1db8..e3d713a 100644
--- a/tests/compiletest.rs
+++ b/tests/compiletest.rs
@@ -3,8 +3,7 @@
use std::env;
-// Run `./dev.sh +$toolchain test --test compiletest` to update this.
-#[rustversion::attr(before(2020-11-25), ignore)] // Note: This date is commit-date and the day before the toolchain date.
+#[rustversion::attr(before(2021-01-08), ignore)] // Note: This date is commit-date and the day before the toolchain date.
#[test]
fn ui() {
if env::var_os("CI").is_none() {
@@ -12,10 +11,5 @@ fn ui() {
}
let t = trybuild::TestCases::new();
- t.compile_fail("tests/ui/cfg/*.rs");
- t.compile_fail("tests/ui/not_unpin/*.rs");
- t.compile_fail("tests/ui/pin_project/*.rs");
- t.compile_fail("tests/ui/pinned_drop/*.rs");
- t.compile_fail("tests/ui/unsafe_unpin/*.rs");
- t.compile_fail("tests/ui/unstable-features/*.rs");
+ t.compile_fail("tests/ui/*/*.rs");
}