File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -125,9 +125,7 @@ jobs:
125125 max-parallel : 12
126126 matrix :
127127 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,
131129 aarch64-unknown-linux-gnu,
132130 aarch64-unknown-linux-musl,
133131 arm-linux-androideabi,
Original file line number Diff line number Diff line change @@ -1545,6 +1545,7 @@ fn test_android(target: &str) {
15451545 t => panic ! ( "unsupported target: {}" , t) ,
15461546 } ;
15471547 let x86 = target. contains ( "i686" ) || target. contains ( "x86_64" ) ;
1548+ let aarch64 = target. contains ( "aarch64" ) ;
15481549
15491550 let mut cfg = ctest_cfg ( ) ;
15501551 cfg. define ( "_GNU_SOURCE" , None ) ;
@@ -1880,6 +1881,12 @@ fn test_android(target: &str) {
18801881 | "SW_MAX"
18811882 | "SW_CNT" => true ,
18821883
1884+ // FIXME: aarch64 env cannot find it:
1885+ | "PTRACE_GETREGS"
1886+ | "PTRACE_SETREGS" if aarch64 => true ,
1887+ // FIXME: The value has been changed on r26b:
1888+ | "SYS_syscalls" if aarch64 => true ,
1889+
18831890 _ => false ,
18841891 }
18851892 } ) ;
You can’t perform that action at this time.
0 commit comments