Pass the remaining args to the executed interactive unit
We only support running one interactive test at a time; everything after the unit name is to be considered an argument to the actual unit.
This commit is contained in:
parent
7d515553e6
commit
e058cd4c5f
1 changed files with 5 additions and 1 deletions
|
@ -195,7 +195,11 @@ main (int argc, char **argv)
|
|||
|
||||
unit_test_main = func;
|
||||
|
||||
ret = unit_test_main (argc, argv);
|
||||
ret = unit_test_main (n_unit_names, unit_names);
|
||||
|
||||
g_free (unit_test);
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
g_free (unit_test);
|
||||
|
|
Loading…
Reference in a new issue