diff options
| -rwxr-xr-x | test/run-test | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/run-test b/test/run-test index 486b465a89..bd8b9e88ca 100755 --- a/test/run-test +++ b/test/run-test @@ -926,6 +926,11 @@ fi tail -n 3000 "$tmp_dir/$strace_output" echo '####################' fi + if [ "x$target_mode" = "xno" -a "x$SANITIZE_HOST" = "xaddress" ]; then + # Run the stack script to symbolize any ASAN aborts on the host for SANITIZE_HOST. The + # tools used by the given ABI work for both x86 and x86-64. + echo "ABI: 'x86_64'" | cat - "$output" | $ANDROID_BUILD_TOP/development/scripts/stack | tail -n 3000 + fi echo ' ' fi |