summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/libmpv_test.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/libmpv_test.c b/test/libmpv_test.c
index 5f8436355d..909cc08ad4 100644
--- a/test/libmpv_test.c
+++ b/test/libmpv_test.c
@@ -253,8 +253,9 @@ int main(int argc, char *argv[])
if (!ctx)
return 1;
- // Use tct for all video-related stuff.
- check_api_error(mpv_set_property_string(ctx, "vo", "tct"));
+ check_api_error(mpv_set_option_string(ctx, "vo", "null"));
+ check_api_error(mpv_set_option_string(ctx, "terminal", "yes"));
+ check_api_error(mpv_set_option_string(ctx, "msg-level", "all=debug"));
test_options_and_properties();
test_file_loading(argv[1]);