Show
Ignore:
Timestamp:
06/09/10 14:00:40 (14 years ago)
Author:
mido
Message:

astyle applied all over the library

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/tests/testsuite/testsuite.cpp

    r865 r1064  
    1010 
    1111int main ( int argc, char const *argv[] ) { 
    12         if ( argc > 1 ) { 
    13                 if ( !strcmp ( argv[1], "print" ) ) 
    14                 { 
    15                         print_test_list(); 
    16                         return 0; 
    17                 } 
    18                 else 
    19                         pick_selected_tests ( argc, argv ); 
    20         } else { 
    21                 cout << endl << "TESTSUITE - a program covering all BDM unit tests." << endl << endl 
    22                      << argv[0] << " ....................................... run all unit tests" << endl 
    23                      << argv[0] << " particular_test_1 particular_test_2 ... run selected unit tests" << endl 
    24                      << argv[0] << " print ................................. print all the implemented unit tests" << endl; 
    25         } 
     12    if ( argc > 1 ) { 
     13        if ( !strcmp ( argv[1], "print" ) ) 
     14        { 
     15            print_test_list(); 
     16            return 0; 
     17        } 
     18        else 
     19            pick_selected_tests ( argc, argv ); 
     20    } else { 
     21        cout << endl << "TESTSUITE - a program covering all BDM unit tests." << endl << endl 
     22             << argv[0] << " ....................................... run all unit tests" << endl 
     23             << argv[0] << " particular_test_1 particular_test_2 ... run selected unit tests" << endl 
     24             << argv[0] << " print ................................. print all the implemented unit tests" << endl; 
     25    } 
    2626 
    27         return run_selected_tests(); 
     27    return run_selected_tests(); 
    2828}