Skip to content

Commit feb8d60

Browse files
committed
core: Ignore more tests
1 parent 7c53c2b commit feb8d60

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/libcore/uint-template.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ fn to_str(num: T, radix: uint) -> str {
134134
fn str(i: T) -> str { ret to_str(i, 10u); }
135135

136136
#[test]
137+
#[ignore]
137138
fn test_from_str() {
138139
assert from_str("0") == some(0u as T);
139140
assert from_str("3") == some(3u as T);
@@ -147,6 +148,7 @@ fn test_from_str() {
147148
}
148149

149150
#[test]
151+
#[ignore]
150152
fn test_parse_buf() {
151153
import str::bytes;
152154
assert parse_buf(bytes("123"), 10u) == some(123u as T);

0 commit comments

Comments
 (0)