File tree Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 2
2
refs/heads/master: 09bb07bed9166105ea961a42b5fff7739ae0d2e9
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: eb8fd119c65c67f3b1b8268cc7341c22d39b7b61
5
- refs/heads/try: 44ab00ee37c4ffb8440ff20fd8a15cd24a6f3e46
5
+ refs/heads/try: 3a5b64172045e7f1ec1981c8da2150c7feb73079
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
8
refs/heads/try2: a810c03263670238bccd64cabb12a23a46e3a278
Original file line number Diff line number Diff line change @@ -851,7 +851,8 @@ mod biguint_tests {
851
851
}
852
852
853
853
#[test]
854
- #[ignore]
854
+ #[ignore(cfg(target_arch = " x86") ) ]
855
+ #[ ignore ( cfg ( target_arch = "arm" ) ) ]
855
856
fn test_shl( ) {
856
857
fn check ( v : ~[ BigDigit ] , shift : uint , ans : ~[ BigDigit ] ) {
857
858
assert BigUint :: new ( v) << shift == BigUint :: new ( ans) ;
@@ -869,7 +870,8 @@ mod biguint_tests {
869
870
}
870
871
871
872
#[ test]
872
- #[ignore]
873
+ #[ ignore( cfg( target_arch = "x86" ) ) ]
874
+ #[ ignore( cfg( target_arch = "arm" ) ) ]
873
875
fn test_shr ( ) {
874
876
fn check ( v : ~[ BigDigit ] , shift : uint , ans : ~[ BigDigit ] ) {
875
877
assert BigUint :: new ( v) >> shift == BigUint :: new ( ans) ;
@@ -1089,7 +1091,8 @@ mod biguint_tests {
1089
1091
}
1090
1092
1091
1093
#[ test]
1092
- #[ ignore]
1094
+ #[ ignore( cfg( target_arch = "x86" ) ) ]
1095
+ #[ ignore( cfg( target_arch = "arm" ) ) ]
1093
1096
fn test_to_str_radix( ) {
1094
1097
for to_str_pairs( ) . each |num_pair| {
1095
1098
let & ( n, rs) = num_pair;
@@ -1101,7 +1104,8 @@ mod biguint_tests {
1101
1104
}
1102
1105
1103
1106
#[ test]
1104
- #[ ignore]
1107
+ #[ ignore( cfg( target_arch = "x86" ) ) ]
1108
+ #[ ignore( cfg( target_arch = "arm" ) ) ]
1105
1109
fn test_from_str_radix( ) {
1106
1110
for to_str_pairs( ) . each |num_pair| {
1107
1111
let & ( n, rs) = num_pair;
You can’t perform that action at this time.
0 commit comments