Skip to content

Move tests from test/run-fail to UI #71185

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 9, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/bootstrap/builder.rs
Original file line number Diff line number Diff line change
@@ -359,7 +359,6 @@ impl<'a> Builder<'a> {
test::Tidy,
test::Ui,
test::CompileFail,
test::RunFail,
test::RunPassValgrind,
test::MirOpt,
test::Codegen,
@@ -370,7 +369,6 @@ impl<'a> Builder<'a> {
test::UiFullDeps,
test::Rustdoc,
test::Pretty,
test::RunFailPretty,
test::RunPassValgrindPretty,
test::Crate,
test::CrateLibrustc,
1 change: 0 additions & 1 deletion src/bootstrap/mk/Makefile.in
Original file line number Diff line number Diff line change
@@ -48,7 +48,6 @@ check:
$(Q)$(BOOTSTRAP) test $(BOOTSTRAP_ARGS)
check-aux:
$(Q)$(BOOTSTRAP) test \
src/test/run-fail/pretty \
src/test/run-pass-valgrind/pretty \
$(AUX_ARGS) \
$(BOOTSTRAP_ARGS)
9 changes: 0 additions & 9 deletions src/bootstrap/test.rs
Original file line number Diff line number Diff line change
@@ -898,8 +898,6 @@ default_test!(CompileFail {
suite: "compile-fail"
});

default_test!(RunFail { path: "src/test/run-fail", mode: "run-fail", suite: "run-fail" });

default_test!(RunPassValgrind {
path: "src/test/run-pass-valgrind",
mode: "run-pass-valgrind",
@@ -929,13 +927,6 @@ host_test!(UiFullDeps { path: "src/test/ui-fulldeps", mode: "ui", suite: "ui-ful
host_test!(Rustdoc { path: "src/test/rustdoc", mode: "rustdoc", suite: "rustdoc" });

host_test!(Pretty { path: "src/test/pretty", mode: "pretty", suite: "pretty" });
test!(RunFailPretty {
path: "src/test/run-fail/pretty",
mode: "pretty",
suite: "run-fail",
default: false,
host: true
});
test!(RunPassValgrindPretty {
path: "src/test/run-pass-valgrind/pretty",
mode: "pretty",
24 changes: 0 additions & 24 deletions src/test/run-fail/bug-811.rs

This file was deleted.

9 changes: 0 additions & 9 deletions src/test/run-fail/overflowing-lsh-1.rs

This file was deleted.

9 changes: 0 additions & 9 deletions src/test/run-fail/overflowing-lsh-2.rs

This file was deleted.

9 changes: 0 additions & 9 deletions src/test/run-fail/overflowing-lsh-3.rs

This file was deleted.

9 changes: 0 additions & 9 deletions src/test/run-fail/overflowing-rsh-1.rs

This file was deleted.

9 changes: 0 additions & 9 deletions src/test/run-fail/overflowing-rsh-2.rs

This file was deleted.

9 changes: 0 additions & 9 deletions src/test/run-fail/overflowing-rsh-3.rs

This file was deleted.

9 changes: 0 additions & 9 deletions src/test/run-fail/overflowing-rsh-5.rs

This file was deleted.

10 changes: 0 additions & 10 deletions src/test/run-fail/overflowing-rsh-6.rs

This file was deleted.

7 changes: 0 additions & 7 deletions src/test/run-fail/panic-macro-any.rs

This file was deleted.

10 changes: 0 additions & 10 deletions src/test/run-fail/unwind-unique.rs

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
// run-fail
// error-pattern:index out of bounds
// ignore-emscripten no processes

use std::usize;
use std::mem::size_of;
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
// Test bounds checking for DST raw slices

// run-fail
// error-pattern:index out of bounds
// ignore-emscripten no processes

#[allow(unconditional_panic)]
fn main() {
let a: *const [_] = &[1, 2, 3];
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
// run-fail
// error-pattern:quux
// ignore-emscripten no processes

fn foo() -> ! {
panic!("quux");
}

#[allow(resolve_trait_on_defaulted_unit)]
fn main() {
foo() == foo(); // these types wind up being defaulted to ()
}
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
// run-fail
// error-pattern:quux
// ignore-emscripten no processes

fn my_err(s: String) -> ! {
println!("{}", s);
panic!("quux");
}

fn main() {
3_usize == my_err("bye".to_string());
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
// run-fail
// error-pattern:panic 1
// ignore-emscripten no processes

// revisions: migrate mir
//[mir]compile-flags: -Z borrowck=mir
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
// run-fail
// error-pattern:oops
// ignore-emscripten no processes

fn main() {
let func = || -> ! {
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#![allow(unconditional_panic, const_err)]

// run-fail
// error-pattern: attempt to divide by zero
// ignore-emscripten no processes

fn main() {
let x = &(1 / (1 - 1));
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
// run-fail
// error-pattern:explicit panic
// ignore-emscripten no processes

fn f() -> ! {
panic!()
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
// run-fail
// error-pattern:generator resumed after panicking
// ignore-emscripten no processes

// Test that we get the correct message for resuming a panicked generator.

Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
// run-fail
// error-pattern:capacity overflow
// ignore-emscripten no processes

use std::collections::hash_map::HashMap;
use std::usize;
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
// run-fail
// error-pattern:explicit panic
// ignore-emscripten no processes

fn f() -> ! {
panic!()
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
// run-fail
// error-pattern:explicit panic
// ignore-emscripten no processes

fn main() {
let _x = if false {
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
// run-fail
// error-pattern:Number is odd
// ignore-emscripten no processes

fn even(x: usize) -> bool {
if x < 2 {
return false;
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
// run-fail
// error-pattern:quux
// ignore-emscripten no processes

fn my_err(s: String) -> ! {
println!("{}", s);
panic!("quux");
}

fn main() {
if my_err("bye".to_string()) {
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Issue #7580

// run-fail
// error-pattern:panic works
// ignore-emscripten no processes

use std::*;

Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
// run-fail
// error-pattern:explicit panic
// ignore-emscripten no processes

pub fn main() {
panic!();
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
// run-fail
// error-pattern:bad input
// ignore-emscripten no processes

fn main() {
Some("foo").unwrap_or(panic!("bad input")).to_string();
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
// run-fail
// error-pattern:stop
// ignore-emscripten no processes

// #18576
// Make sure that calling an extern function pointer in an unreachable
@@ -10,4 +12,5 @@ fn main() {
let pointer = other;
pointer();
}

extern "C" fn other() {}
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Regression test for Issue #20971.

// run-fail
// error-pattern:Hello, world!
// ignore-emscripten no processes

pub trait Parser {
type Input;
@@ -12,7 +14,7 @@ impl Parser for () {
fn parse(&mut self, input: ()) {}
}

pub fn many() -> Box<Parser<Input = <() as Parser>::Input> + 'static> {
pub fn many() -> Box<dyn Parser<Input = <() as Parser>::Input> + 'static> {
panic!("Hello, world!")
}

Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
// run-fail
// error-pattern:panic evaluated
// ignore-emscripten no processes

#[allow(unused_variables)]
fn main() {
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
// run-fail
// error-pattern:panic evaluated
// ignore-emscripten no processes

#[allow(unused_variables)]
fn main() {
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
// run-fail
// error-pattern:explicit panic
// ignore-emscripten no processes

use std::sync::Arc;

enum e<T> {
ee(Arc<T>),
enum Err<T> {
Errr(Arc<T>),
}

fn foo() -> e<isize> {
fn foo() -> Err<isize> {
panic!();
}

Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
// run-fail
// error-pattern:index out of bounds
// ignore-emscripten no processes

use std::mem;

Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
// run-fail
// error-pattern:custom message
// ignore-emscripten no processes

fn main() {
assert!(false, "custom message");
Loading