Skip to content

Commit 76b910d

Browse files
committed
testsuite: Add test cases, some xfailed
Closes #5060 Closes #4446 Closes #5192
1 parent 4c86a04 commit 76b910d

File tree

5 files changed

+149
-0
lines changed

5 files changed

+149
-0
lines changed
+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
12+
use std::io;
13+
14+
macro_rules! print_hd_tl (
15+
($field_hd:ident, $($field_tl:ident),+) => ({
16+
io::print(stringify!($field)); //~ ERROR unknown macro variable
17+
io::print("::[");
18+
$(
19+
io::print(stringify!($field_tl));
20+
io::print(", ");
21+
)+
22+
io::print("]\n");
23+
})
24+
)
25+
26+
fn main() {
27+
print_hd_tl!(x, y, z, w)
28+
}
29+

src/test/run-pass/issue-4446.rs

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
use std::{pipes, io, task, comm};
12+
13+
fn main() {
14+
let (port, chan) = comm::stream();
15+
16+
do task::spawn {
17+
io::println(port.recv());
18+
}
19+
20+
chan.send("hello, world");
21+
}

src/test/run-pass/issue-5060.rs

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
use std::io;
12+
13+
macro_rules! print_hd_tl (
14+
($field_hd:ident, $($field_tl:ident),+) => ({
15+
io::print(stringify!($field_hd));
16+
io::print("::[");
17+
$(
18+
io::print(stringify!($field_tl));
19+
io::print(", ");
20+
)+
21+
io::print("]\n");
22+
})
23+
)
24+
25+
fn main() {
26+
print_hd_tl!(x, y, z, w)
27+
}
28+

src/test/run-pass/issue-5192.rs

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
pub trait EventLoop {
12+
}
13+
14+
pub struct UvEventLoop {
15+
uvio: int
16+
}
17+
18+
impl UvEventLoop {
19+
pub fn new() -> UvEventLoop {
20+
UvEventLoop {
21+
uvio: 0
22+
}
23+
}
24+
}
25+
26+
impl EventLoop for UvEventLoop {
27+
}
28+
29+
pub struct Scheduler {
30+
event_loop: ~EventLoop,
31+
}
32+
33+
impl Scheduler {
34+
35+
pub fn new(event_loop: ~EventLoop) -> Scheduler {
36+
Scheduler {
37+
event_loop: event_loop,
38+
}
39+
}
40+
}
41+
42+
fn main() {
43+
let mut sched = Scheduler::new(~UvEventLoop::new() as ~EventLoop);
44+
}

src/test/run-pass/issue-5280.rs

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
// xfail-test
12+
13+
type FontTableTag = u32;
14+
15+
trait FontTableTagConversions {
16+
fn tag_to_str(self);
17+
}
18+
19+
impl FontTableTagConversions for FontTableTag {
20+
fn tag_to_str(self) {
21+
&self;
22+
}
23+
}
24+
25+
fn main() {
26+
5.tag_to_str();
27+
}

0 commit comments

Comments
 (0)