Skip to content

Commit

Permalink
Moved problematic tests on wasm32-unknown 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 f7f7c1e commit 4b24645
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 4 deletions.
25 changes: 25 additions & 0 deletions src/test/compile-fail/auxiliary/panic-runtime-lang-items.rs
@@ -0,0 +1,25 @@
// 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]
#![feature(lang_items)]

use core::panic::PanicInfo;

#[lang = "panic_impl"]
fn panic_impl(info: &PanicInfo) -> ! { loop {} }
#[lang = "eh_personality"]
fn eh_personality() {}
#[lang = "eh_unwind_resume"]
fn eh_unwind_resume() {}
File renamed without changes.
4 changes: 0 additions & 4 deletions src/test/ui/panic-runtime/two-panic-runtimes.stderr

This file was deleted.

0 comments on commit 4b24645

Please sign in to comment.