BUG: Adding debugging code to remotely debug a failing dashboard test.

This commit is contained in:
Brad King 2005-02-15 08:28:19 -05:00
parent 01c799c0ff
commit fc8e5aeebf
1 changed files with 4 additions and 0 deletions

View File

@ -2268,6 +2268,10 @@ void SystemTools::ClassInitialize()
Realpath(pwd, pwd_path);
if(cwd == pwd_path && strcmp(cwd, pwd) != 0)
{
#if defined(__HP_aCC)
fprintf(stderr, "cwd=[%s]\npwd=[%s]\npwd_path=[%s]\n",
cwd, pwd, pwd_path.c_str());
#endif
// The current working directory is a logical path. Split
// both the logical and physical paths into their components.
kwsys_stl::vector<kwsys_stl::string> cwd_components;