forked from OSchip/llvm-project
[rt][nfc] Rewrite #ifndef as #if defined().
This commit is contained in:
parent
3b03d9b874
commit
f58a1f65e7
|
@ -46,7 +46,7 @@ TEST_F(BacktraceGuardedPoolAllocatorDeathTest, DoubleFree) {
|
|||
}
|
||||
|
||||
TEST_F(BacktraceGuardedPoolAllocatorDeathTest, UseAfterFree) {
|
||||
#ifdef __linux__ && __ARM_ARCH == 7
|
||||
#if defined(__linux__) && __ARM_ARCH == 7
|
||||
// Incomplete backtrace on Armv7 Linux
|
||||
GTEST_SKIP();
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue