diff options
author | Dylan Baker <[email protected]> | 2018-12-11 10:34:51 -0800 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2018-12-11 10:34:51 -0800 |
commit | 31c162ad225161af2b8069cf7e2940a4bfc37456 (patch) | |
tree | c168998d17db7a8d235d3b18bf246790ac82d136 /.travis.yml | |
parent | 116f0fb216cd175e4d2a3324443dca034b973f28 (diff) |
travis: meson: enable unit tests
v2: [Emil] pass the argument directly to meson
Reviewed-by: Emil Velikov <[email protected]> (v1)
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 3c34942cadb..8cb7f8b95c1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -649,7 +649,9 @@ script: export CFLAGS="$CFLAGS -isystem`pwd`" meson _build $MESON_OPTIONS \ - --native-file=native.file + --native-file=native.file \ + -Dbuild-tests=true meson configure _build ninja -C _build + ninja -C _build test fi |