aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2019-05-18 23:33:49 +0000
committerandroid-build-team Robot <android-build-team-robot@google.com>2019-05-18 23:33:49 +0000
commit30682f8b47ee4c78bfb9aed7a28206e04b78f7d5 (patch)
tree9f09a20ed8c98e468a43740a114a03d1260c8edc
parent9cc9af1e6021525a817215ccf61ab2e010fefd01 (diff)
parentdd0d0d10a301991e53f387a0f89f7a4e27c2df07 (diff)
downloadandroid_bionic-30682f8b47ee4c78bfb9aed7a28206e04b78f7d5.tar.gz
android_bionic-30682f8b47ee4c78bfb9aed7a28206e04b78f7d5.tar.bz2
android_bionic-30682f8b47ee4c78bfb9aed7a28206e04b78f7d5.zip
Snap for 5582435 from dd0d0d10a301991e53f387a0f89f7a4e27c2df07 to qt-qpr1-release
Change-Id: Ib531f950c78b81e0b3c52961f3da9ee9836e2622
-rw-r--r--tests/stack_unwinding_test.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/stack_unwinding_test.cpp b/tests/stack_unwinding_test.cpp
index 0ff6f30a6..e620ecd09 100644
--- a/tests/stack_unwinding_test.cpp
+++ b/tests/stack_unwinding_test.cpp
@@ -112,6 +112,10 @@ static void noinline UnwindTest() {
}
TEST(stack_unwinding, unwind_through_signal_frame) {
+#if defined(__i386__)
+ GTEST_SKIP() << "Temporarily skip test since it fails on x86 see b/132763120.";
+#endif
+
ScopedSignalHandler ssh(SIGUSR1, UnwindSignalHandler);
UnwindTest();
@@ -119,6 +123,10 @@ TEST(stack_unwinding, unwind_through_signal_frame) {
// On LP32, the SA_SIGINFO flag gets you __restore_rt instead of __restore.
TEST(stack_unwinding, unwind_through_signal_frame_SA_SIGINFO) {
+#if defined(__i386__)
+ GTEST_SKIP() << "Temporarily skip test since it fails on x86 see b/132763120.";
+#endif
+
ScopedSignalHandler ssh(SIGUSR1, UnwindSignalHandler, SA_SIGINFO);
UnwindTest();