Skip to content

Commit

Permalink
Moved problematic tests on dist-x86_64-musl back to compile-fail.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtwco committed Aug 14, 2018
1 parent b8b7a3c commit f7f7c1e
Show file tree
Hide file tree
Showing 7 changed files with 70 additions and 12 deletions.
27 changes: 27 additions & 0 deletions src/test/compile-fail/auxiliary/panic-runtime-unwind.rs
@@ -0,0 +1,27 @@
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// compile-flags:-C panic=unwind
// no-prefer-dynamic

#![feature(panic_runtime)]
#![crate_type = "rlib"]

#![no_std]
#![panic_runtime]

#[no_mangle]
pub extern fn __rust_maybe_catch_panic() {}

#[no_mangle]
pub extern fn __rust_start_panic() {}

#[no_mangle]
pub extern fn rust_eh_personality() {}
27 changes: 27 additions & 0 deletions src/test/compile-fail/auxiliary/panic-runtime-unwind2.rs
@@ -0,0 +1,27 @@
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// compile-flags:-C panic=unwind
// no-prefer-dynamic

#![feature(panic_runtime)]
#![crate_type = "rlib"]

#![no_std]
#![panic_runtime]

#[no_mangle]
pub extern fn __rust_maybe_catch_panic() {}

#[no_mangle]
pub extern fn __rust_start_panic() {}

#[no_mangle]
pub extern fn rust_eh_personality() {}
16 changes: 16 additions & 0 deletions src/test/compile-fail/auxiliary/wants-panic-runtime-unwind.rs
@@ -0,0 +1,16 @@
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// no-prefer-dynamic

#![crate_type = "rlib"]
#![no_std]

extern crate panic_runtime_unwind;
6 changes: 0 additions & 6 deletions src/test/ui/panic-runtime/want-abort-got-unwind.stderr

This file was deleted.

6 changes: 0 additions & 6 deletions src/test/ui/panic-runtime/want-abort-got-unwind2.stderr

This file was deleted.

0 comments on commit f7f7c1e

Please sign in to comment.