summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2023-03-27 21:08:20 -0400
committerEli Schwartz <eschwartz@archlinux.org>2023-03-28 15:15:45 -0400
commit9d98b4cb840e692808a89f7c6f193215ae37f4b8 (patch)
tree47f7b076d99865aadcb8e9ffe0acce06ef0a1060
parent728c8dce245a4df095e5acab42db769d79efd1ba (diff)
downloadmeson-9d98b4cb840e692808a89f7c6f193215ae37f4b8.tar.gz
test that python modules nominally compile without warnings
Because we poke around with the dependency, so we might introduce some, and have at least once.
-rw-r--r--test cases/python/2 extmodule/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/python/2 extmodule/meson.build b/test cases/python/2 extmodule/meson.build
index 239492c44..8332afdd1 100644
--- a/test cases/python/2 extmodule/meson.build
+++ b/test cases/python/2 extmodule/meson.build
@@ -1,5 +1,5 @@
project('Python extension module', 'c',
- default_options : ['buildtype=release'])
+ default_options : ['buildtype=release', 'werror=true'])
# Because Windows Python ships only with optimized libs,
# we must build this project the same way.