Skip to content

Commit 07d5e3f

Browse files
committed
---
yaml --- r: 52169 b: refs/heads/dist-snap c: 3a5b641 h: refs/heads/master i: 52167: d6f0559 v: v3
1 parent f3f4c9d commit 07d5e3f

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
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: 44ab00ee37c4ffb8440ff20fd8a15cd24a6f3e46
10+
refs/heads/dist-snap: 3a5b64172045e7f1ec1981c8da2150c7feb73079
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: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -851,7 +851,8 @@ mod biguint_tests {
851851
}
852852
853853
#[test]
854-
#[ignore]
854+
#[ignore(cfg(target_arch = "x86"))]
855+
#[ignore(cfg(target_arch = "arm"))]
855856
fn test_shl() {
856857
fn check(v: ~[BigDigit], shift: uint, ans: ~[BigDigit]) {
857858
assert BigUint::new(v) << shift == BigUint::new(ans);
@@ -869,7 +870,8 @@ mod biguint_tests {
869870
}
870871

871872
#[test]
872-
#[ignore]
873+
#[ignore(cfg(target_arch = "x86"))]
874+
#[ignore(cfg(target_arch = "arm"))]
873875
fn test_shr() {
874876
fn check(v: ~[BigDigit], shift: uint, ans: ~[BigDigit]) {
875877
assert BigUint::new(v) >> shift == BigUint::new(ans);
@@ -1089,7 +1091,8 @@ mod biguint_tests {
10891091
}
10901092

10911093
#[test]
1092-
#[ignore]
1094+
#[ignore(cfg(target_arch = "x86"))]
1095+
#[ignore(cfg(target_arch = "arm"))]
10931096
fn test_to_str_radix() {
10941097
for to_str_pairs().each |num_pair| {
10951098
let &(n, rs) = num_pair;
@@ -1101,7 +1104,8 @@ mod biguint_tests {
11011104
}
11021105

11031106
#[test]
1104-
#[ignore]
1107+
#[ignore(cfg(target_arch = "x86"))]
1108+
#[ignore(cfg(target_arch = "arm"))]
11051109
fn test_from_str_radix() {
11061110
for to_str_pairs().each |num_pair| {
11071111
let &(n, rs) = num_pair;

0 commit comments

Comments
 (0)