debuggerd_test: fix crasher path.
https://android-review.googlesource.com/#/c/331200 moved crasher to using soong, which changed its location from /system/xbin/crasher to /system/bin/crasher. Bug: http://b/35100742 Test: /data/nativetest/debuggerd_test/debuggerd_test32 Test: /data/nativetest64/debuggerd_test/debuggerd_test64 Change-Id: I16a2050b257277023773cc0c960b5ab36e0c7cd4
This commit is contained in:
parent
887b6b9a4b
commit
a7d7eb6d2a
1 changed files with 2 additions and 2 deletions
|
|
@ -40,10 +40,10 @@ using namespace std::chrono_literals;
|
|||
using android::base::unique_fd;
|
||||
|
||||
#if defined(__LP64__)
|
||||
#define CRASHER_PATH "/system/xbin/crasher64"
|
||||
#define CRASHER_PATH "/system/bin/crasher64"
|
||||
#define ARCH_SUFFIX "64"
|
||||
#else
|
||||
#define CRASHER_PATH "/system/xbin/crasher"
|
||||
#define CRASHER_PATH "/system/bin/crasher"
|
||||
#define ARCH_SUFFIX ""
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue