diff options
author | Reid Kleckner <reid@kleckner.net> | 2013-04-30 04:30:41 +0000 |
---|---|---|
committer | Reid Kleckner <reid@kleckner.net> | 2013-04-30 04:30:41 +0000 |
commit | 2a839438559bc7d3067ff2166105f47e0af06b37 (patch) | |
tree | 99dcb8af53d73da205ed03197b69494e7c0076fe /utils/unittest | |
parent | 8e6e02a41bd21f8e919e812dbd7aa9ed5474bdbf (diff) |
Try to fix ProgramTest on FreeBSD
This seemed like the cleanest way to find the test executable. Also fix
the file mode.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@180770 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/unittest')
-rw-r--r-- | utils/unittest/UnitTestMain/TestMain.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/utils/unittest/UnitTestMain/TestMain.cpp b/utils/unittest/UnitTestMain/TestMain.cpp index ce32b7380f..5387512e6f 100644 --- a/utils/unittest/UnitTestMain/TestMain.cpp +++ b/utils/unittest/UnitTestMain/TestMain.cpp @@ -20,11 +20,16 @@ # endif #endif +const char *TestMainArgv0; + int main(int argc, char **argv) { llvm::sys::PrintStackTraceOnErrorSignal(); testing::InitGoogleTest(&argc, argv); llvm::cl::ParseCommandLineOptions(argc, argv); + // Make it easy for a test to re-execute itself by saving argv[0]. + TestMainArgv0 = argv[0]; + # if defined(LLVM_ON_WIN32) // Disable all of the possible ways Windows conspires to make automated // testing impossible. |