aboutsummaryrefslogtreecommitdiff
path: root/tests/android_unsafe_frame_pointer_chase_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/android_unsafe_frame_pointer_chase_test.cpp')
-rw-r--r--tests/android_unsafe_frame_pointer_chase_test.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/android_unsafe_frame_pointer_chase_test.cpp b/tests/android_unsafe_frame_pointer_chase_test.cpp
index 5b436ff81..7fa50e149 100644
--- a/tests/android_unsafe_frame_pointer_chase_test.cpp
+++ b/tests/android_unsafe_frame_pointer_chase_test.cpp
@@ -22,8 +22,6 @@
#include "platform/bionic/android_unsafe_frame_pointer_chase.h"
-#include "utils.h"
-
// Prevent tail calls inside recurse.
__attribute__((weak, noinline)) size_t nop(size_t val) {
return val;
@@ -96,10 +94,6 @@ static void* BacktraceThread(void*) {
}
TEST(android_unsafe_frame_pointer_chase, pthread) {
- // Android11 missed the fix (r.android.com/1382566) so disabling the test.
- // It will be re-enabled in the next releases.
- SKIP_WITH_NATIVE_BRIDGE;
-
pthread_t t;
ASSERT_EQ(0, pthread_create(&t, nullptr, BacktraceThread, nullptr));
void* retval;