Show
Ignore:
Timestamp:
08/07/09 09:57:52 (15 years ago)
Author:
vbarta
Message:

repeating failing mpdf tests; mpdf_harness configs now have optional cond (0 by default) and mandatory variance

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/tests/testsuite.cpp

    r477 r484  
    11#include "UnitTest++.h" 
    22#include "itpp_ext.h" 
     3#include <iostream> 
     4#include <iomanip> 
    35 
    46int main ( int, char const *[] ) { 
    57        itpp::RNG_randomize(); 
    6         return UnitTest::RunAllTests(); 
     8        try { 
     9          return UnitTest::RunAllTests(); 
     10        } catch ( std::exception const& e ) { 
     11          std::cerr << e.what() << std::endl; 
     12          return -1; 
     13        } 
    714}