diff options
author | Brad King <brad.king@kitware.com> | 2005-02-15 13:28:19 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2005-02-15 13:28:19 (GMT) |
commit | fc8e5aeebf8be9e9ee106acd8dceef54e339f684 (patch) | |
tree | 381fa5c7218107d29544ca6b2743f62bc1d0adbd /Source/kwsys | |
parent | 01c799c0ffe6b67861ed855746ca307c0707e517 (diff) | |
download | CMake-fc8e5aeebf8be9e9ee106acd8dceef54e339f684.zip CMake-fc8e5aeebf8be9e9ee106acd8dceef54e339f684.tar.gz CMake-fc8e5aeebf8be9e9ee106acd8dceef54e339f684.tar.bz2 |
BUG: Adding debugging code to remotely debug a failing dashboard test.
Diffstat (limited to 'Source/kwsys')
-rw-r--r-- | Source/kwsys/SystemTools.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/kwsys/SystemTools.cxx b/Source/kwsys/SystemTools.cxx index b9c385f..cd6981d 100644 --- a/Source/kwsys/SystemTools.cxx +++ b/Source/kwsys/SystemTools.cxx @@ -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; |