StratifyLabs / sostest

Stratify OS Test Suite
GNU Lesser General Public License v3.0
3 stars 3 forks source link

show_usage() needs to happen before Test::initialize #37

Closed tyler-gilbert closed 6 years ago

tyler-gilbert commented 6 years ago

should be:

    o_flags = decode_cli(cli, o_execute_flags);

    if( o_flags == 0 ){
       show_usage(cli);
       exit(0);
    }

    Test::initialize(cli.name(), cli.version());
tyler-gilbert commented 6 years ago

@shomagan Here is an easy one.