test: indicate test function ran in log

This commit is contained in:
sfan5 2023-08-06 13:41:09 +02:00
parent b68491e9a6
commit 38b59408c2
1 changed files with 5 additions and 0 deletions

View File

@ -257,8 +257,13 @@ int main(int argc, char *argv[])
check_api_error(mpv_set_option_string(ctx, "terminal", "yes"));
check_api_error(mpv_set_option_string(ctx, "msg-level", "all=debug"));
const char *fmt = "================ TEST: %s ================\n";
printf(fmt, "test_options_and_properties");
test_options_and_properties();
printf(fmt, "test_file_loading");
test_file_loading(argv[1]);
printf(fmt, "test_lavfi_complex");
test_lavfi_complex(argv[1]);
mpv_destroy(ctx);