Skip to content

Commit ba041fb

Browse files
committed
---
yaml --- r: 52166 b: refs/heads/dist-snap c: fd87228 h: refs/heads/master v: v3
1 parent 093b7fa commit ba041fb

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
@@ -7,7 +7,7 @@ refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
99
refs/heads/incoming: 44d4d6de762f3f9aae1fedcf454c66b79b3ad58d
10-
refs/heads/dist-snap: c3a74d87bd5a8f8bd32350f74a3fa4fb1f9bf5e6
10+
refs/heads/dist-snap: fd872284bb827f22cd4b38e3e0002efd4c99884f
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1313
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0

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