Skip to content

Commit 345d8b9

Browse files
committed
---
yaml --- r: 37585 b: refs/heads/try c: f67904c h: refs/heads/master i: 37583: 62624df v: v3
1 parent cc0c18b commit 345d8b9

File tree

3 files changed

+1
-7
lines changed

3 files changed

+1
-7
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: 09bb07bed9166105ea961a42b5fff7739ae0d2e9
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: eb8fd119c65c67f3b1b8268cc7341c22d39b7b61
5-
refs/heads/try: 187c6c90a14ec378ce502aa7f6f184ba28a71947
5+
refs/heads/try: f67904ca407778be1adce893a90d2a8b292de40b
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: a810c03263670238bccd64cabb12a23a46e3a278

branches/try/src/libcore/int-template.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -155,9 +155,7 @@ pub pure fn to_str_bytes<U>(n: T, radix: uint, f: fn(v: &[u8]) -> U) -> U {
155155
/// Convert to a string
156156
pub pure fn str(i: T) -> ~str { return to_str(i, 10u); }
157157

158-
// FIXME: Has alignment issues on windows and 32-bit linux (#2609)
159158
#[test]
160-
#[ignore]
161159
fn test_from_str() {
162160
assert from_str(~"0") == Some(0 as T);
163161
assert from_str(~"3") == Some(3 as T);
@@ -175,9 +173,7 @@ fn test_from_str() {
175173
assert from_str(~"x").is_none();
176174
}
177175

178-
// FIXME: Has alignment issues on windows and 32-bit linux (#2609)
179176
#[test]
180-
#[ignore]
181177
fn test_parse_bytes() {
182178
use str::to_bytes;
183179
assert parse_bytes(to_bytes(~"123"), 10u) == Some(123 as T);

branches/try/src/libcore/uint-template.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,6 @@ pub fn test_to_str() {
221221
}
222222

223223
#[test]
224-
#[ignore]
225224
pub fn test_from_str() {
226225
assert from_str(~"0") == Some(0u as T);
227226
assert from_str(~"3") == Some(3u as T);
@@ -235,7 +234,6 @@ pub fn test_from_str() {
235234
}
236235

237236
#[test]
238-
#[ignore]
239237
pub fn test_parse_bytes() {
240238
use str::to_bytes;
241239
assert parse_bytes(to_bytes(~"123"), 10u) == Some(123u as T);

0 commit comments

Comments
 (0)