diff -r a5fbfefd615f -r 6547bf8ca13a searchengine/util/tsrc/itk/src/itkobservers.cpp --- a/searchengine/util/tsrc/itk/src/itkobservers.cpp Fri Jun 11 14:43:47 2010 +0300 +++ b/searchengine/util/tsrc/itk/src/itkobservers.cpp Mon Jun 28 10:34:53 2010 +0530 @@ -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())); }