aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2019-05-18 23:04:12 +0000
committerandroid-build-team Robot <android-build-team-robot@google.com>2019-05-18 23:04:12 +0000
commit0c8310d45b71f94d158a9bcdfd8a0c82a6d69743 (patch)
tree9f09a20ed8c98e468a43740a114a03d1260c8edc
parentcdd963f913c4d434510e9f600b08e1df9c5c203a (diff)
parentfe0fbcff7f70ecd6dc046902385ab06a73320e7c (diff)
downloadbionic-0c8310d45b71f94d158a9bcdfd8a0c82a6d69743.tar.gz
Snap for 5582428 from fe0fbcff7f70ecd6dc046902385ab06a73320e7c to qt-release
Change-Id: Ie2309daed10f46a3eceeff42e56c238d88045bdf
-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();