File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ case $HOST_TARGET in
84
84
MIRI_TEST_TARGET=aarch64-apple-darwin run_tests
85
85
MIRI_TEST_TARGET=i686-pc-windows-msvc run_tests
86
86
MIRI_TEST_TARGET=x86_64-unknown-freebsd run_tests_minimal hello integer vec panic/panic concurrency/simple atomic data_race env/var
87
- MIRI_TEST_TARGET=aarch64-linux-android run_tests_minimal hello integer vec
87
+ MIRI_TEST_TARGET=aarch64-linux-android run_tests_minimal hello integer vec panic/panic
88
88
MIRI_TEST_TARGET=thumbv7em-none-eabihf MIRI_NO_STD=1 run_tests_minimal no_std # no_std embedded architecture
89
89
;;
90
90
x86_64-apple-darwin)
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ impl Dlsym {
15
15
pub fn from_str < ' tcx > ( name : & str ) -> InterpResult < ' tcx , Option < Dlsym > > {
16
16
Ok ( match & * name {
17
17
"signal" => Some ( Dlsym :: signal) ,
18
+ "android_set_abort_message" => None ,
18
19
_ => throw_unsup_format ! ( "unsupported Android dlsym: {}" , name) ,
19
20
} )
20
21
}
You can’t perform that action at this time.
0 commit comments