mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-21 17:52:12 +03:00
core: Ignore more tests
This commit is contained in:
@@ -134,6 +134,7 @@ fn digit(n: T) -> char {
|
||||
fn str(i: T) -> str { ret to_str(i, 10u); }
|
||||
|
||||
#[test]
|
||||
#[ignore]
|
||||
fn test_from_str() {
|
||||
assert from_str("0") == some(0u as T);
|
||||
assert from_str("3") == some(3u as T);
|
||||
@@ -147,6 +148,7 @@ fn test_from_str() {
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[ignore]
|
||||
fn test_parse_buf() {
|
||||
import str::bytes;
|
||||
assert parse_buf(bytes("123"), 10u) == some(123u as T);
|
||||
|
||||
Reference in New Issue
Block a user