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

This commit is contained in:
Brad King 2005-02-15 08:40:34 -05:00
parent fc8e5aeebf
commit 23dfc9440a
1 changed files with 4 additions and 0 deletions

View File

@ -2296,6 +2296,10 @@ void SystemTools::ClassInitialize()
// Add the translation to keep the logical path name.
if(!cwd_changed.empty() && !pwd_changed.empty())
{
#if defined(__HP_aCC)
fprintf(stderr, "adding [%s]->[%s]\n", cwd_changed.c_str(),
pwd_changed.c_str());
#endif
SystemTools::AddTranslationPath(cwd_changed.c_str(),
pwd_changed.c_str());
}