testsuite: xfailed test cases
This commit is contained in:
parent
c4656cfd04
commit
0266172eae
19
src/test/run-pass/issue-5917.rs
Normal file
19
src/test/run-pass/issue-5917.rs
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
// Copyright 2013 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.
|
||||||
|
|
||||||
|
// xfail-test
|
||||||
|
|
||||||
|
use std::io;
|
||||||
|
|
||||||
|
struct T (&'static [int]);
|
||||||
|
static t : T = T (&'static [5, 4, 3]);
|
||||||
|
fn main () {
|
||||||
|
assert_eq!(t[0], 5);
|
||||||
|
}
|
25
src/test/run-pass/issue-6470.rs
Normal file
25
src/test/run-pass/issue-6470.rs
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
// Copyright 2013 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.
|
||||||
|
|
||||||
|
// xfail-test
|
||||||
|
|
||||||
|
pub mod Bar {
|
||||||
|
pub struct Foo {
|
||||||
|
v: int,
|
||||||
|
}
|
||||||
|
|
||||||
|
extern {
|
||||||
|
#[rust_stack]
|
||||||
|
pub fn foo(v: *Foo) -> Foo;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn main() { }
|
||||||
|
|
Loading…
Reference in New Issue
Block a user