Bring in new test cases from 2018-08-18
diff --git a/tests/clone.sh b/tests/clone.sh
index bda0e68..999e15e 100755
--- a/tests/clone.sh
+++ b/tests/clone.sh
@@ -2,7 +2,7 @@
REMOTE=rust
REPO=https://github.com/rust-lang/rust
-REV=12ed235adc62e63b16bb4f715b143c37a5efa00d
+REV=33b923fd44c5c5925e635815fce68bdf1f98740f
set -euo pipefail
cd "$(dirname "${BASH_SOURCE[0]}")"
diff --git a/tests/common/mod.rs b/tests/common/mod.rs
index 8193fe5..6a95500 100644
--- a/tests/common/mod.rs
+++ b/tests/common/mod.rs
@@ -73,12 +73,23 @@
}
match path_string.as_ref() {
+ // Existential type
+ "tests/rust/src/test/run-pass/existential_type.rs" |
+ "tests/rust/src/test/ui/existential_types/bound_reduction.rs" |
+ "tests/rust/src/test/ui/existential_types/different_defining_uses_never_type2.rs" |
+ "tests/rust/src/test/ui/existential_types/existential-associated-type.rs" |
+ "tests/rust/src/test/ui/existential_types/generic_lifetime_param.rs" |
+ "tests/rust/src/test/ui/impl-trait/associated-existential-type-generic-trait.rs" |
+ "tests/rust/src/test/ui/impl-trait/associated-existential-type-trivial.rs" |
+ "tests/rust/src/test/ui/impl-trait/associated-existential-type.rs" |
+ "tests/rust/src/test/ui/impl-trait/existential_type_in_fn_body.rs" |
// Deprecated placement syntax
"tests/rust/src/test/run-pass/new-box-syntax.rs" |
"tests/rust/src/test/ui/obsolete-in-place/bad.rs" |
// not actually test cases
"tests/rust/src/test/run-pass/auxiliary/macro-comma-support.rs" |
- "tests/rust/src/test/run-pass/auxiliary/macro-include-items-expr.rs" => false,
+ "tests/rust/src/test/run-pass/auxiliary/macro-include-items-expr.rs" |
+ "tests/rust/src/test/ui/issues/auxiliary/issue-21146-inc.rs" => false,
_ => true,
}
}