summaryrefslogtreecommitdiffstats
path: root/options/options.c
diff options
context:
space:
mode:
authorDudemanguy <random342@airmail.cc>2023-02-24 16:24:49 -0600
committerDudemanguy <random342@airmail.cc>2023-03-02 15:45:27 +0000
commit3535e326dcb8b7d46e2fa9c43ec330d348a4bf6e (patch)
tree118d30eff3f0e2437fc6f8a3f2d77adc66a37933 /options/options.c
parent3eae9d6c0fdfd49d38a90ab53f23fcd533df0a58 (diff)
downloadmpv-3535e326dcb8b7d46e2fa9c43ec330d348a4bf6e.tar.bz2
mpv-3535e326dcb8b7d46e2fa9c43ec330d348a4bf6e.tar.xz
player: remove unittest option
Since meson has its own unit testing system, let's rework mpv's tests so they integrate nicely with this. To prepare for this, start off by dropping the unittest option. Of course, this means that tests will no longer be supported in the waf build at all but it will be dropped anyway. Note that the tests option is preserved for the meson build. We will still make use of this in the future commits.
Diffstat (limited to 'options/options.c')
-rw-r--r--options/options.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/options/options.c b/options/options.c
index 1e49731709..9fa786419b 100644
--- a/options/options.c
+++ b/options/options.c
@@ -403,10 +403,6 @@ static const m_option_t mp_opts[] = {
{"version", OPT_PRINT(print_version)},
{"V", OPT_PRINT(print_version)},
-#if HAVE_TESTS
- {"unittest", OPT_STRING(test_mode), .flags = CONF_NOCFG | M_OPT_NOPROP},
-#endif
-
{"player-operation-mode", OPT_CHOICE(operation_mode,
{"cplayer", 0}, {"pseudo-gui", 1}),
.flags = M_OPT_PRE_PARSE | M_OPT_NOPROP},