diff -r d575fd691cf9 -r afe194b6b1cd searchengine/util/tsrc/itk/src/itkobservers.cpp --- a/searchengine/util/tsrc/itk/src/itkobservers.cpp Wed Jun 23 19:26:19 2010 +0300 +++ b/searchengine/util/tsrc/itk/src/itkobservers.cpp Tue Jul 06 15:30:04 2010 +0300 @@ -44,7 +44,7 @@ /***************************************************************** * TestRunConsole */ - void TestRunConsole::beginRun(TestMgr * , + void TestRunConsole::beginRun(TestMgr * testMgr, size_t /* testCount */, const char * /* baseDirPath */) { @@ -53,14 +53,14 @@ } - void TestRunConsole::endRun(TestMgr * ) throw () + void TestRunConsole::endRun(TestMgr * testMgr) throw () { using namespace std; os_ << endl << "TEST RUN COMPLETED." << endl; } - void TestRunConsole::beginTestCase(TestMgr * , + void TestRunConsole::beginTestCase(TestMgr * testMgr, TesterBase * testerBase) { ++indent_; @@ -754,7 +754,9 @@ void ProgressFsDisplayer::deleteCurFile() { - Cpt_EINTR_RETRY_SP( remove(curFilePath_.c_str()) ); + int + success; + Cpt_EINTR_RETRY(success,remove(curFilePath_.c_str())); }