summaryrefslogtreecommitdiffstats
path: root/Source/cmaketest.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2001-06-27 13:17:12 (GMT)
committerKen Martin <ken.martin@kitware.com>2001-06-27 13:17:12 (GMT)
commitc19c252e23ece64d0533e450668d26c976251ce2 (patch)
treef812a7cec06732ad4579d657438e6f854bf5d41b /Source/cmaketest.cxx
parentc6418bd34b5c66f636bb2aadb3b5af7a22e81227 (diff)
downloadCMake-c19c252e23ece64d0533e450668d26c976251ce2.zip
CMake-c19c252e23ece64d0533e450668d26c976251ce2.tar.gz
CMake-c19c252e23ece64d0533e450668d26c976251ce2.tar.bz2
minor fixes to testing
Diffstat (limited to 'Source/cmaketest.cxx')
-rw-r--r--Source/cmaketest.cxx42
1 files changed, 37 insertions, 5 deletions
diff --git a/Source/cmaketest.cxx b/Source/cmaketest.cxx
index 050655d..8838e68 100644
--- a/Source/cmaketest.cxx
+++ b/Source/cmaketest.cxx
@@ -37,19 +37,51 @@ main (int argc, char *argv[])
}
// now build the test
- if (!cmSystemTools::RunCommand(MAKECOMMAND, output))
+ std::string makeCommand = MAKEPROGRAM;
+ makeCommand += " ";
+ makeCommand += argv[3];
+#ifdef _WIN32
+ makeCommand += ".dsw /MAKE \"ALL_BUILD - Release\" /REBUILD";
+#endif
+ if (!cmSystemTools::RunCommand(makeCommand.c_str(), output))
{
- std::cerr << "Error: " MAKECOMMAND " execution failed\n";
+ std::cerr << "Error: " << makeCommand.c_str() << " execution failed\n";
std::cerr << output.c_str() << "\n";
// return to the original directory
cmSystemTools::ChangeDirectory(cwd.c_str());
return 1;
}
- // now run the compiled test
- if (!cmSystemTools::RunCommand(argv[3], output))
+ // now run the compiled test if we can find it
+ // See if the executable exists as written.
+ std::string fullPath;
+ if(cmSystemTools::FileExists(argv[3]))
{
- std::cerr << "Error: " << argv[3] << " execution failed\n";
+ fullPath = cmSystemTools::CollapseFullPath(argv[3]);
+ }
+ std::string tryPath = argv[3];
+ tryPath += cmSystemTools::GetExecutableExtension();
+ if(cmSystemTools::FileExists(tryPath.c_str()))
+ {
+ fullPath = cmSystemTools::CollapseFullPath(tryPath.c_str());
+ }
+
+ // try the release extension
+ tryPath = "Release/";
+ tryPath += cmSystemTools::GetFilenameName(argv[3]);
+ if(cmSystemTools::FileExists(tryPath.c_str()))
+ {
+ fullPath = cmSystemTools::CollapseFullPath(tryPath.c_str());
+ }
+ tryPath += cmSystemTools::GetExecutableExtension();
+ if(cmSystemTools::FileExists(tryPath.c_str()))
+ {
+ fullPath = cmSystemTools::CollapseFullPath(tryPath.c_str());
+ }
+
+ if (!cmSystemTools::RunCommand(fullPath.c_str(), output))
+ {
+ std::cerr << "Error: " << fullPath.c_str() << " execution failed\n";
// return to the original directory
cmSystemTools::ChangeDirectory(cwd.c_str());
return 1;