Skip to content

test: Disable morestack tests #8172

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

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions src/test/run-fail/morestack1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// xfail-test newsched transition
// error-pattern:fail
fn getbig(i: int) {
if i != 0 {
Expand Down
1 change: 1 addition & 0 deletions src/test/run-fail/morestack2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// xfail-test newsched transition
// error-pattern:explicit failure

// This time we're testing that the stack limits are restored
Expand Down
1 change: 1 addition & 0 deletions src/test/run-fail/morestack3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// xfail-test newsched transition
// error-pattern:explicit failure

// Just testing unwinding
Expand Down
1 change: 1 addition & 0 deletions src/test/run-fail/morestack4.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// xfail-test newsched transition
// error-pattern:explicit failure

// Just testing unwinding
Expand Down
2 changes: 2 additions & 0 deletions src/test/run-pass/morestack1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// xfail-test newsched transition

fn getbig(i: int) {
if i != 0 {
getbig(i - 1);
Expand Down
2 changes: 2 additions & 0 deletions src/test/run-pass/morestack2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// xfail-test newsched transition

fn getbig(i: int) -> int {
let m = if i >= 0 {
let j = getbig(i - 1);
Expand Down
2 changes: 2 additions & 0 deletions src/test/run-pass/morestack3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// xfail-test newsched transition

// Here we're testing that all of the argument registers, argument
// stack slots, and return value are preserved across split stacks.
fn getbig(a0: int,
Expand Down
2 changes: 2 additions & 0 deletions src/test/run-pass/morestack4.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// xfail-test newsched transition

// This is testing for stack frames greater than 256 bytes,
// for which function prologues are generated differently

Expand Down
2 changes: 2 additions & 0 deletions src/test/run-pass/morestack5.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// xfail-test newsched transition

// This test will call __morestack with various minimum stack sizes

extern mod extra;
Expand Down
2 changes: 2 additions & 0 deletions src/test/run-pass/morestack6.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// xfail-test newsched transition

// This test attempts to force the dynamic linker to resolve
// external symbols as close to the red zone as possible.

Expand Down