Commit a04ae337 authored by Dominik Charousset's avatar Dominik Charousset

Make sure `engine::argv` is never `nullptr`

parent c7eaa95b
......@@ -537,6 +537,8 @@ int main(int argc, char** argv) {
auto colorize = res.opts.count("no-colors") == 0;
if (divider < argc) {
engine::args(argc - divider - 1, argv + divider + 1);
} else {
engine::args(0, argv);
}
auto result = engine::run(colorize, log_file, verbosity_console,
verbosity_file, max_runtime, suites,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment