From 8eacea80ad609ec45d4ee6326ca439b8dfd6769f Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Wed, 13 Mar 2019 11:51:13 +0000 Subject: [PATCH] Appease MSVC builds by #ifdef wrapping runAndGetCommandOutput tests. NFCI. llvm-svn: 356042 --- llvm/unittests/Support/Host.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/llvm/unittests/Support/Host.cpp b/llvm/unittests/Support/Host.cpp index 89080f3..ec9dd95 100644 --- a/llvm/unittests/Support/Host.cpp +++ b/llvm/unittests/Support/Host.cpp @@ -249,6 +249,7 @@ CPU part : 0x0a1 "tsv110"); } +#if defined(__APPLE__) || defined(_AIX) static bool runAndGetCommandOutput( const char *ExePath, ArrayRef argv, std::unique_ptr &Buffer, off_t &Size) { @@ -288,6 +289,7 @@ TEST_F(HostTest, DummyRunAndGetCommandOutputUse) { // disabled. (void) runAndGetCommandOutput; } +#endif #if defined(__APPLE__) TEST_F(HostTest, getMacOSHostVersion) { -- 2.7.4