From 34be8041b374f00b5483f04a1274e1a56eaced85 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Mon, 6 Jul 2015 23:51:40 +0000 Subject: [PATCH] Make UnitTestMain/TestMain.cpp free from llvm/Config/config.h. llvm/Config/config.h is unavailable outside of build tree. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@241523 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/unittest/UnitTestMain/TestMain.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/utils/unittest/UnitTestMain/TestMain.cpp b/utils/unittest/UnitTestMain/TestMain.cpp index f5b09a5cf67..fb2b0f16ee3 100644 --- a/utils/unittest/UnitTestMain/TestMain.cpp +++ b/utils/unittest/UnitTestMain/TestMain.cpp @@ -7,13 +7,12 @@ // //===----------------------------------------------------------------------===// -#include "llvm/Config/config.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/Signals.h" #include "gtest/gtest.h" -#if defined(LLVM_ON_WIN32) +#if defined(_WIN32) # include # if defined(_MSC_VER) # include @@ -30,7 +29,7 @@ int main(int argc, char **argv) { // Make it easy for a test to re-execute itself by saving argv[0]. TestMainArgv0 = argv[0]; -# if defined(LLVM_ON_WIN32) +# if defined(_WIN32) // Disable all of the possible ways Windows conspires to make automated // testing impossible. ::SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOGPFAULTERRORBOX); -- 2.34.1