Merge "Temporarily disable unwind through signal test."
am: dcc855456e
Change-Id: I881e198921407babd64f9aa87d20be8146a62974
This commit is contained in:
commit
daa23b5279
1 changed files with 8 additions and 0 deletions
|
@ -112,6 +112,10 @@ static void noinline UnwindTest() {
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(stack_unwinding, unwind_through_signal_frame) {
|
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);
|
ScopedSignalHandler ssh(SIGUSR1, UnwindSignalHandler);
|
||||||
|
|
||||||
UnwindTest();
|
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.
|
// On LP32, the SA_SIGINFO flag gets you __restore_rt instead of __restore.
|
||||||
TEST(stack_unwinding, unwind_through_signal_frame_SA_SIGINFO) {
|
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);
|
ScopedSignalHandler ssh(SIGUSR1, UnwindSignalHandler, SA_SIGINFO);
|
||||||
|
|
||||||
UnwindTest();
|
UnwindTest();
|
||||||
|
|
Loading…
Reference in a new issue