[llvm] r241523 - Make UnitTestMain/TestMain.cpp free from llvm/Config/config.h.
NAKAMURA Takumi
geek4civic at gmail.com
Mon Jul 6 16:51:40 PDT 2015
Author: chapuni
Date: Mon Jul 6 18:51:40 2015
New Revision: 241523
URL: http://llvm.org/viewvc/llvm-project?rev=241523&view=rev
Log:
Make UnitTestMain/TestMain.cpp free from llvm/Config/config.h.
llvm/Config/config.h is unavailable outside of build tree.
Modified:
llvm/trunk/utils/unittest/UnitTestMain/TestMain.cpp
Modified: llvm/trunk/utils/unittest/UnitTestMain/TestMain.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/unittest/UnitTestMain/TestMain.cpp?rev=241523&r1=241522&r2=241523&view=diff
==============================================================================
--- llvm/trunk/utils/unittest/UnitTestMain/TestMain.cpp (original)
+++ llvm/trunk/utils/unittest/UnitTestMain/TestMain.cpp Mon Jul 6 18:51:40 2015
@@ -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 <windows.h>
# if defined(_MSC_VER)
# include <crtdbg.h>
@@ -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);
More information about the llvm-commits
mailing list