summaryrefslogtreecommitdiffstats
path: root/DOCS
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 /DOCS
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 'DOCS')
-rw-r--r--DOCS/man/options.rst18
1 files changed, 0 insertions, 18 deletions
diff --git a/DOCS/man/options.rst b/DOCS/man/options.rst
index bad8821fc8..d87191d83e 100644
--- a/DOCS/man/options.rst
+++ b/DOCS/man/options.rst
@@ -7166,21 +7166,3 @@ Miscellaneous
code is the same.)
Conversion is not applied to metadata that is updated at runtime.
-
-
-Debugging
----------
-
-``--unittest=<name>``
- Run an internal unit test. There are multiple, and the name specifies which.
-
- The special value ``all-simple`` runs all tests which do not need further
- setup (other arguments and such). Some tests may need additional arguments
- to do anything useful.
-
- On success, the player binary exits with exit status 0, otherwise it returns
- with an undefined non-0 exit status (it may crash or abort itself on test
- failures).
-
- This is only enabled if built with ``--enable-tests``, and should normally
- be enabled and used by developers only.