[asan][test] Don't XFAIL Posix/unpoison-alternate-stack.cpp on Solaris

One ASan test currently `XPASS`es on Solaris:

  AddressSanitizer-i386-sunos :: TestCases/Posix/unpoison-alternate-stack.cpp

It was originally `XFAIL`ed in D88501 <https://reviews.llvm.org/D88501>
because `longjmp` from a signal handled is highly unportable, warned
against in XPG7, and was not supported by Solaris `libc` at the time.

However, since then support has been added for some cases including the
current one, so the `XFAIL` can go.

Tested on `amd64-pc-solaris2.11` and `x86_64-pc-linux-gnu`.

Differential Revision: https://reviews.llvm.org/D97933
This commit is contained in:
Rainer Orth 2021-03-05 09:43:47 +01:00
parent 1d0dee51da
commit 579fd02597
1 changed files with 0 additions and 2 deletions

View File

@ -7,8 +7,6 @@
// RUN: %run %t
// XFAIL: ios && !iossim
// longjmp from signal handler is unportable.
// XFAIL: solaris
#include <algorithm>
#include <cassert>