Skip to content

Commit

Permalink
auto merge of #8172 : brson/rust/nomorestack, r=pcwalton
Browse files Browse the repository at this point in the history
The new scheduler does not yet implement split stacks
  • Loading branch information
bors committed Aug 1, 2013
2 parents eb5743b + 1d256ba commit d346f1a
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 0 deletions.
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

0 comments on commit d346f1a

Please sign in to comment.