Skip to content

Commit b6ae4dc

Browse files
committed
---
yaml --- r: 140700 b: refs/heads/try2 c: 9b30fa3 h: refs/heads/master v: v3
1 parent 83f7642 commit b6ae4dc

File tree

4 files changed

+4
-13
lines changed

4 files changed

+4
-13
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: ea5c413427553507698a3358488199fcb00ca1ce
8+
refs/heads/try2: 9b30fa31168c9337da36a95484b2550954528216
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/src/test/run-pass/issue-2904.rs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,6 @@ mod test {
7979
pub fn trivial_to_str() {
8080
assert!(lambda.to_str() == "\\")
8181
}
82-
83-
#[test]
84-
pub fn read_simple_board() {
85-
let s = include_str!("./maps/contest1.map");
86-
io::with_str_reader(s, read_board_grid)
87-
}
8882
}
8983

9084
pub fn main() {}

branches/try2/src/test/run-pass/issue-3424.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,11 @@ use core::path::{Path};
1616

1717
type rsrc_loader = ~fn(path: &Path) -> result::Result<~str, ~str>;
1818

19-
#[test]
2019
fn tester()
2120
{
2221
let loader: rsrc_loader = |_path| {result::Ok(~"more blah")};
2322

24-
let path = path::from_str("blah");
23+
let path = path::Path("blah");
2524
assert!(loader(&path).is_ok());
2625
}
2726

branches/try2/src/test/run-pass/issue-3559.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// xfail-fast
1+
// xfail-test #4276
22

33
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
44
// file at the top-level directory of this distribution and at
@@ -15,7 +15,6 @@ extern mod std;
1515

1616
use core::io::{WriterUtil};
1717

18-
#[cfg(test)]
1918
fn check_strs(actual: &str, expected: &str) -> bool
2019
{
2120
if actual != expected
@@ -26,10 +25,9 @@ fn check_strs(actual: &str, expected: &str) -> bool
2625
return true;
2726
}
2827

29-
#[test]
3028
fn tester()
3129
{
32-
let mut table = core::hashmap::HashMap();
30+
let mut table = core::hashmap::HashMap::new();
3331
table.insert(@~"one", 1);
3432
table.insert(@~"two", 2);
3533
assert!(check_strs(table.to_str(), ~"xxx")); // not sure what expected should be

0 commit comments

Comments
 (0)