Skip to content

Commit

Permalink
Fix or ignore regressed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
petrochenkov committed Jul 22, 2019
1 parent 14f5160 commit 39d144e
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/test/run-pass/backtrace-debuginfo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions src/test/run-pass/backtrace.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
5 changes: 5 additions & 0 deletions src/test/run-pass/command-uid-gid.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// ignore-android
// ignore-cloudabi
// ignore-emscripten
// ignore-sgx

#![feature(rustc_private)]

fn main() {
Expand Down
1 change: 1 addition & 0 deletions src/test/run-pass/generator/size-moved-locals.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
// See issue #59123 for a full explanation.

// edition:2018
// ignore-wasm32 issue #62807

#![feature(generators, generator_trait)]

Expand Down
Original file line number Diff line number Diff line change
@@ -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"]
Expand All @@ -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> {}

0 comments on commit 39d144e

Please sign in to comment.