Skip to content

Commit e7cefe1

Browse files
committed
---
yaml --- r: 40399 b: refs/heads/dist-snap c: f67904c h: refs/heads/master i: 40397: 43d2266 40395: 54e55c1 40391: 8982b21 40383: 300d22f v: v3
1 parent da4144c commit e7cefe1

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
@@ -7,7 +7,7 @@ refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: a810c03263670238bccd64cabb12a23a46e3a278
99
refs/heads/incoming: e90142e536c150df0d9b4b2f11352152177509b5
10-
refs/heads/dist-snap: 187c6c90a14ec378ce502aa7f6f184ba28a71947
10+
refs/heads/dist-snap: f67904ca407778be1adce893a90d2a8b292de40b
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1313
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0

branches/dist-snap/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/dist-snap/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)