Changeset b516a58 in rtems-tools for tester/covoar/covoar.cc
- Timestamp:
- 12/05/17 14:03:44 (5 years ago)
- Branches:
- 5, master
- Children:
- 0333442
- Parents:
- 149144f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tester/covoar/covoar.cc
r149144f rb516a58 162 162 default: /* '?' */ 163 163 usage(); 164 exit( -1);164 exit(EXIT_FAILURE); 165 165 } 166 166 } … … 223 223 std::cout << "error missing option: " + option << std::endl; 224 224 usage(); 225 throw;225 exit(EXIT_FAILURE); 226 226 } 227 227 … … 308 308 stderr, "ERROR: No information to analyze\n" 309 309 ); 310 exit( -1);310 exit(EXIT_FAILURE); 311 311 } 312 312 … … 373 373 if (!coverageReader) { 374 374 fprintf( stderr, "ERROR: Unable to create coverage file reader\n" ); 375 exit( -1);375 exit(EXIT_FAILURE); 376 376 } 377 377
Note: See TracChangeset
for help on using the changeset viewer.