summaryrefslogtreecommitdiffstats
path: root/wscript
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 /wscript
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 'wscript')
-rw-r--r--wscript5
1 files changed, 0 insertions, 5 deletions
diff --git a/wscript b/wscript
index 026c37b598..fafd15b0e1 100644
--- a/wscript
+++ b/wscript
@@ -79,11 +79,6 @@ build_options = [
'default': 'enable',
'func': check_true
}, {
- 'name': '--tests',
- 'desc': 'unit tests (development only)',
- 'default': 'disable',
- 'func': check_true
- }, {
# Reminder: normally always built, but enabled by MPV_LEAK_REPORT.
# Building it can be disabled only by defining NDEBUG through CFLAGS.
'name': '--ta-leak-report',