[Lldb-commits] [PATCH] D57912: [lldb] [unittests] Disable MainLoopTest::DetectsEOF on NetBSD
Pavel Labath via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Fri Feb 8 01:32:25 PST 2019
labath accepted this revision.
labath added a comment.
I don't remember if this tests some super-critical functionality (i.e., whether you will be able to function reasonably without it), but in case it does, it should be fairly easy to get this class to use one of the other event sources (pselect, ppoll), if kevent is not functioning well on netbsd.
And to answer your IRC question, gtest has a concept of a disabled test, which you do by prefixing the test with "DISABLED_". The typical way to achieve that would be via something like:
#ifdef __NetBSD__
#define SKIP_ON_NETBSD(x) DISABLED_ ## x
#else
#define SKIP_ON_NETBSD(x) x
#endif
TEST(foo, SKIP_ON_NETBSD(bar)) { ... }
However, that is very tedious, so people usually do exactly what you have done here.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D57912/new/
https://reviews.llvm.org/D57912
More information about the lldb-commits
mailing list