mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
Fix or ignore regressed tests
This commit is contained in:
parent
14f5160423
commit
39d144e808
@ -10,8 +10,9 @@
|
|||||||
// ignore-pretty issue #37195
|
// ignore-pretty issue #37195
|
||||||
// ignore-cloudabi spawning processes is not supported
|
// ignore-cloudabi spawning processes is not supported
|
||||||
// ignore-emscripten spawning processes is not supported
|
// ignore-emscripten spawning processes is not supported
|
||||||
// normalize-stderr-test ".*\n" -> ""
|
// ignore-msvc issue #62844
|
||||||
// ignore-sgx no processes
|
// ignore-sgx no processes
|
||||||
|
// normalize-stderr-test ".*\n" -> ""
|
||||||
|
|
||||||
// Note that above `-opt-bisect-limit=0` is used to basically disable
|
// Note that above `-opt-bisect-limit=0` is used to basically disable
|
||||||
// optimizations. It creates tons of output on stderr, hence we normalize
|
// optimizations. It creates tons of output on stderr, hence we normalize
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
// ignore-cloudabi spawning processes is not supported
|
// ignore-cloudabi spawning processes is not supported
|
||||||
// ignore-emscripten spawning processes is not supported
|
// ignore-emscripten spawning processes is not supported
|
||||||
// ignore-openbsd no support for libbacktrace without filename
|
// ignore-openbsd no support for libbacktrace without filename
|
||||||
|
// ignore-msvc issue #62844
|
||||||
// ignore-sgx no processes
|
// ignore-sgx no processes
|
||||||
// compile-flags:-g
|
// compile-flags:-g
|
||||||
|
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
// ignore-android
|
||||||
|
// ignore-cloudabi
|
||||||
|
// ignore-emscripten
|
||||||
|
// ignore-sgx
|
||||||
|
|
||||||
#![feature(rustc_private)]
|
#![feature(rustc_private)]
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
// See issue #59123 for a full explanation.
|
// See issue #59123 for a full explanation.
|
||||||
|
|
||||||
// edition:2018
|
// edition:2018
|
||||||
|
// ignore-wasm32 issue #62807
|
||||||
|
|
||||||
#![feature(generators, generator_trait)]
|
#![feature(generators, generator_trait)]
|
||||||
|
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
// Make sure that the mono-item collector does not crash when trying to
|
// Make sure that the mono-item collector does not crash when trying to
|
||||||
// instantiate a default impl for DecodeUtf16<<u8 as A>::Item>
|
// instantiate a default impl for DecodeUtf16<<u8 as A>::Item>
|
||||||
// See https://github.com/rust-lang/rust/issues/58375
|
// See https://github.com/rust-lang/rust/issues/58375
|
||||||
|
|
||||||
|
// build-pass
|
||||||
// compile-flags:-C link-dead-code
|
// compile-flags:-C link-dead-code
|
||||||
|
|
||||||
#![crate_type = "rlib"]
|
#![crate_type = "rlib"]
|
||||||
@ -19,5 +21,4 @@ impl A for u8 {
|
|||||||
type Item = char;
|
type Item = char;
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Arbitrary for DecodeUtf16<<u8 as A>::Item> {
|
impl Arbitrary for DecodeUtf16<<u8 as A>::Item> {}
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user