Fix or ignore regressed tests

This commit is contained in:
Vadim Petrochenkov 2019-07-19 14:03:22 +03:00
parent 14f5160423
commit 39d144e808
5 changed files with 12 additions and 3 deletions

View File

@ -10,8 +10,9 @@
// ignore-pretty issue #37195
// ignore-cloudabi spawning processes is not supported
// ignore-emscripten spawning processes is not supported
// normalize-stderr-test ".*\n" -> ""
// ignore-msvc issue #62844
// ignore-sgx no processes
// normalize-stderr-test ".*\n" -> ""
// Note that above `-opt-bisect-limit=0` is used to basically disable
// optimizations. It creates tons of output on stderr, hence we normalize

View File

@ -2,6 +2,7 @@
// ignore-cloudabi spawning processes is not supported
// ignore-emscripten spawning processes is not supported
// ignore-openbsd no support for libbacktrace without filename
// ignore-msvc issue #62844
// ignore-sgx no processes
// compile-flags:-g

View File

@ -1,3 +1,8 @@
// ignore-android
// ignore-cloudabi
// ignore-emscripten
// ignore-sgx
#![feature(rustc_private)]
fn main() {

View File

@ -9,6 +9,7 @@
// See issue #59123 for a full explanation.
// edition:2018
// ignore-wasm32 issue #62807
#![feature(generators, generator_trait)]

View File

@ -1,6 +1,8 @@
// Make sure that the mono-item collector does not crash when trying to
// instantiate a default impl for DecodeUtf16<<u8 as A>::Item>
// See https://github.com/rust-lang/rust/issues/58375
// build-pass
// compile-flags:-C link-dead-code
#![crate_type = "rlib"]
@ -19,5 +21,4 @@ impl A for u8 {
type Item = char;
}
impl Arbitrary for DecodeUtf16<<u8 as A>::Item> {
}
impl Arbitrary for DecodeUtf16<<u8 as A>::Item> {}