From 920aef76e0979c44a5e7bc50de40b7d50329c8da Mon Sep 17 00:00:00 2001 From: Andy Cedilnik Date: Fri, 30 Apr 2004 12:36:18 -0400 Subject: ENH: Add support for notes in Testing/Notes subdirectory. This way test can write notes that will be reported --- Source/cmCTest.cxx | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index 6832204..6a6176c 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -2954,6 +2954,31 @@ int cmCTest::ProcessTests() res |= CTEST_MEMORY_ERRORS; } } + if ( !notest ) + { + std::string notes_dir = m_ToplevelPath + "/Testing/Notes"; + if ( cmSystemTools::FileIsDirectory(notes_dir.c_str()) ) + { + cmsys::Directory d; + d.Load(notes_dir.c_str()); + unsigned long cc; + for ( cc = 0; cc < d.GetNumberOfFiles(); cc ++ ) + { + const char* file = d.GetFile(cc); + std::string fullname = notes_dir + "/" + file; + if ( cmSystemTools::FileExists(fullname.c_str()) && + !cmSystemTools::FileIsDirectory(fullname.c_str()) ) + { + if ( m_NotesFiles.size() > 0 ) + { + m_NotesFiles += ";"; + } + m_NotesFiles += fullname; + m_Tests[NOTES_TEST] = 1; + } + } + } + } if ( m_Tests[NOTES_TEST] || m_Tests[ALL_TEST] ) { this->UpdateCTestConfiguration(); -- cgit v0.12