File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -125,9 +125,7 @@ jobs:
125
125
max-parallel : 12
126
126
matrix :
127
127
target : [
128
- # FIXME: Mysterious failures in CI, see
129
- # https://github.com/rust-lang/libc/issues/2081
130
- # aarch64-linux-android,
128
+ aarch64-linux-android,
131
129
aarch64-unknown-linux-gnu,
132
130
aarch64-unknown-linux-musl,
133
131
arm-linux-androideabi,
Original file line number Diff line number Diff line change @@ -1544,6 +1544,7 @@ fn test_android(target: &str) {
1544
1544
t => panic ! ( "unsupported target: {}" , t) ,
1545
1545
} ;
1546
1546
let x86 = target. contains ( "i686" ) || target. contains ( "x86_64" ) ;
1547
+ let aarch64 = target. contains ( "aarch64" ) ;
1547
1548
1548
1549
let mut cfg = ctest_cfg ( ) ;
1549
1550
cfg. define ( "_GNU_SOURCE" , None ) ;
@@ -1879,6 +1880,10 @@ fn test_android(target: &str) {
1879
1880
| "SW_MAX"
1880
1881
| "SW_CNT" => true ,
1881
1882
1883
+ // FIXME: aarch64 env cannot find it:
1884
+ | "PTRACE_GETREGS"
1885
+ | "PTRACE_SETREGS" if aarch64 => true ,
1886
+
1882
1887
_ => false ,
1883
1888
}
1884
1889
} ) ;
You can’t perform that action at this time.
0 commit comments