Skip to content

Commit bfed3ae

Browse files
committed
---
yaml --- r: 34455 b: refs/heads/snap-stage3 c: 3a5b641 h: refs/heads/master i: 34453: 1b4acfc 34451: 8a4c5dc 34447: 524cd0a v: v3
1 parent 7adf3eb commit bfed3ae

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
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 44ab00ee37c4ffb8440ff20fd8a15cd24a6f3e46
4+
refs/heads/snap-stage3: 3a5b64172045e7f1ec1981c8da2150c7feb73079
55
refs/heads/try: d324a424d8f84b1eb049b12cf34182bda91b0024
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

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