Skip to content

Commit 9f8851d

Browse files
committed
---
yaml --- r: 41618 b: refs/heads/master c: fd87228 h: refs/heads/master v: v3
1 parent 087c9dd commit 9f8851d

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: c3a74d87bd5a8f8bd32350f74a3fa4fb1f9bf5e6
2+
refs/heads/master: fd872284bb827f22cd4b38e3e0002efd4c99884f
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 2f46b763da2c098913884f101b6d71d69af41b49
55
refs/heads/try: 3d5418789064fdb463e872a4e651af1c628a3650

trunk/src/libstd/bigint.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -851,6 +851,7 @@ mod biguint_tests {
851851
}
852852
853853
#[test]
854+
#[ignore]
854855
fn test_shl() {
855856
fn check(v: ~[BigDigit], shift: uint, ans: ~[BigDigit]) {
856857
assert BigUint::new(v) << shift == BigUint::new(ans);
@@ -868,6 +869,7 @@ mod biguint_tests {
868869
}
869870
870871
#[test]
872+
#[ignore]
871873
fn test_shr() {
872874
fn check(v: ~[BigDigit], shift: uint, ans: ~[BigDigit]) {
873875
assert BigUint::new(v) >> shift == BigUint::new(ans);
@@ -1087,6 +1089,7 @@ mod biguint_tests {
10871089
}
10881090

10891091
#[test]
1092+
#[ignore]
10901093
fn test_to_str_radix() {
10911094
for to_str_pairs().each |num_pair| {
10921095
let &(n, rs) = num_pair;
@@ -1098,6 +1101,7 @@ mod biguint_tests {
10981101
}
10991102

11001103
#[test]
1104+
#[ignore]
11011105
fn test_from_str_radix() {
11021106
for to_str_pairs().each |num_pair| {
11031107
let &(n, rs) = num_pair;

0 commit comments

Comments
 (0)