Fix PDB unittests on non-windows platforms

llvm r282788 changed how the presence of windows DIA SDK is signalled. Adjust to
that.

llvm-svn: 282848
This commit is contained in:
Pavel Labath 2016-09-30 11:47:54 +00:00
parent 2629602f28
commit cbdd3b863d
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ protected:
}
};
#if defined(HAVE_DIA_SDK)
#if HAVE_DIA_SDK
#define REQUIRES_DIA_SDK(TestName) TestName
#else
#define REQUIRES_DIA_SDK(TestName) DISABLED_##TestName