File tree Expand file tree Collapse file tree 2 files changed +9
-5
lines changed
branches/dist-snap/src/libstd Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
8
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9
9
refs/heads/incoming: 44d4d6de762f3f9aae1fedcf454c66b79b3ad58d
10
- refs/heads/dist-snap: 44ab00ee37c4ffb8440ff20fd8a15cd24a6f3e46
10
+ refs/heads/dist-snap: 3a5b64172045e7f1ec1981c8da2150c7feb73079
11
11
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
12
12
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
13
13
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
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