Skip to content

Commit

Permalink
Make UnitTestMain/TestMain.cpp free from llvm/Config/config.h.
Browse files Browse the repository at this point in the history
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
  • Loading branch information
chapuni committed Jul 6, 2015
1 parent 0b1bc70 commit 34be804
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions utils/unittest/UnitTestMain/TestMain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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);
Expand Down

0 comments on commit 34be804

Please sign in to comment.