Skip to content

Commit f9994ec

Browse files
committed
---
yaml --- r: 38347 b: refs/heads/try c: 3a5b641 h: refs/heads/master i: 38345: 932a8b2 38343: 1003aae v: v3
1 parent 771d30d commit f9994ec

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
@@ -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: 44ab00ee37c4ffb8440ff20fd8a15cd24a6f3e46
5+
refs/heads/try: 3a5b64172045e7f1ec1981c8da2150c7feb73079
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: 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)