restored try-catch in the i/o test

pull/13383/head
Vadim Pisarevsky 13 years ago
parent 5e15557155
commit c7d38a3aab
  1. 6
      modules/core/test/test_io.cpp

@ -386,7 +386,7 @@ public:
protected: protected:
void run(int) void run(int)
{ {
//try try
{ {
FileStorage fs("test.xml", FileStorage::WRITE); FileStorage fs("test.xml", FileStorage::WRITE);
vector<int> mi, mi2, mi3, mi4; vector<int> mi, mi2, mi3, mi4;
@ -412,10 +412,10 @@ protected:
double n = norm(mv3[0], mv4[0], CV_C); double n = norm(mv3[0], mv4[0], CV_C);
CV_Assert( n == 0 ); CV_Assert( n == 0 );
} }
/*catch(...) catch(...)
{ {
ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH); ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH);
}*/ }
} }
}; };

Loading…
Cancel
Save