00001 00006 #include "test/io/output/SimpleOutputTester.hpp" 00007 #include "common/log.h" 00008 00009 int main( int argc, char *argv[] ) 00010 { 00011 SimpleOutputTester o_tester; 00012 try 00013 { 00014 o_tester.doTest(argc, argv); 00015 } 00016 catch (std::ios_base::failure e) 00017 { 00018 log_err(0,"Exiting the program due to IO exception"); 00019 exit(1); 00020 } 00021 return 0; 00022 }