player: do not require dummy file arguments to use --unittest

Move the test execution above the point where it checks for an empty
playlist and exits if that's the case.
This commit is contained in:
wm4 2019-11-08 14:29:58 +01:00
parent 3e401bf652
commit 98b38b04c9
1 changed files with 5 additions and 5 deletions

View File

@ -396,6 +396,11 @@ int mp_initialize(struct MPContext *mpctx, char **options)
return -1;
}
#if HAVE_TESTS
if (opts->test_mode && opts->test_mode[0])
return run_tests(mpctx) ? 1 : -1;
#endif
if (!mpctx->playlist->first && !opts->player_idle_mode) {
// nothing to play
mp_print_version(mpctx->log, true);
@ -430,11 +435,6 @@ int mp_initialize(struct MPContext *mpctx, char **options)
if (opts->force_vo == 2 && handle_force_window(mpctx, false) < 0)
return -1;
#if HAVE_TESTS
if (opts->test_mode && opts->test_mode[0])
return run_tests(mpctx) ? 1 : -1;
#endif
MP_STATS(mpctx, "end init");
return 0;