[lldb] [unittest] Skip TestStopReplyContainsThreadPcs on NetBSD

This commit is contained in:
Michał Górny 2019-11-18 21:53:56 +01:00
parent d82dd6ac9a
commit b59af82805
1 changed files with 7 additions and 1 deletions

View File

@ -22,7 +22,13 @@ using namespace llvm;
using namespace lldb;
using namespace testing;
TEST_F(StandardStartupTest, TestStopReplyContainsThreadPcs) {
#ifdef __NetBSD__
#define SKIP_ON_NETBSD(x) DISABLED_ ## x
#else
#define SKIP_ON_NETBSD(x) x
#endif
TEST_F(StandardStartupTest, SKIP_ON_NETBSD(TestStopReplyContainsThreadPcs)) {
// This inferior spawns 4 threads, then forces a break.
ASSERT_THAT_ERROR(
Client->SetInferior({getInferiorPath("thread_inferior"), "4"}),