Skip to content

Commit 7f424ae

Browse files
committed
---
yaml --- r: 38344 b: refs/heads/try c: fd87228 h: refs/heads/master v: v3
1 parent 1003aae commit 7f424ae

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
@@ -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: c3a74d87bd5a8f8bd32350f74a3fa4fb1f9bf5e6
5+
refs/heads/try: fd872284bb827f22cd4b38e3e0002efd4c99884f
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: a810c03263670238bccd64cabb12a23a46e3a278

branches/try/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)