mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-16 12:24:03 +00:00
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
This commit is contained in:
7
unittests/Support/ProgramTest.cpp
Executable file → Normal file
7
unittests/Support/ProgramTest.cpp
Executable file → Normal file
@ -20,6 +20,9 @@
|
||||
extern char **environ;
|
||||
#endif
|
||||
|
||||
// From TestMain.cpp.
|
||||
extern const char *TestMainArgv0;
|
||||
|
||||
namespace {
|
||||
|
||||
using namespace llvm;
|
||||
@ -52,9 +55,7 @@ TEST(ProgramTest, CreateProcessTrailingSlash) {
|
||||
exit(1);
|
||||
}
|
||||
|
||||
// FIXME: Hardcoding argv0 here since I don't know a good cross-platform way
|
||||
// to get it. Maybe ParseCommandLineOptions() should save it?
|
||||
Path my_exe = Path::GetMainExecutable("SupportTests", &ProgramTestStringArg1);
|
||||
Path my_exe = Path::GetMainExecutable(TestMainArgv0, &ProgramTestStringArg1);
|
||||
const char *argv[] = {
|
||||
my_exe.c_str(),
|
||||
"--gtest_filter=ProgramTest.CreateProcessTrailingSlashChild",
|
||||
|
Reference in New Issue
Block a user