summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2019-09-21 22:11:52 +0200
committerwm4 <wm4@nowhere>2019-09-21 22:11:52 +0200
commit293dfc782552f35078215cd39a103c9646051fb2 (patch)
tree8cd2ec04f675507609df0b4921790ec1931f1f91 /wscript
parent9280e6b322b8ea82db5caf394f7851ed26719276 (diff)
downloadmpv-293dfc782552f35078215cd39a103c9646051fb2.tar.bz2
mpv-293dfc782552f35078215cd39a103c9646051fb2.tar.xz
test: fix cmocka assert_float_equal shadowing warnings
Just use cmocka's function. It takes an epsilon argument, which we now provide directly. There's no assert_double_equal() in cmocka (and the float variant actually forces a conversion to the float type), but fortunately we didn't use it.
Diffstat (limited to 'wscript')
-rw-r--r--wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript b/wscript
index 1f70bb7106..dfe551607b 100644
--- a/wscript
+++ b/wscript
@@ -118,7 +118,7 @@ build_options = [
}, {
'name': '--test',
'desc': 'test suite (using cmocka)',
- 'func': check_pkg_config('cmocka', '>= 1.0.0'),
+ 'func': check_pkg_config('cmocka', '>= 1.1.5'),
'default': 'disable',
}, {
'name': '--clang-database',