gstreamer/tests/meson.build
Thibault Saunier 34916e133d tests: Add a gst-tester utility
gst-tester is a tool to launch `.validatetest` files with
TAP[0] compatible output and supporting missing `gst-validate`
application which means that it can be cleanly integrated with meson
test harness.

It allows us to use `gst-validate` to write integration tests in any
GStreamer repository keeping them as close as possible to the code. It
can simplify a lot test writing and reading and not having to go into
another repository to implement or run tests makes it more convenient to
use.

This also implements a stupid simple test to show how that works

[0] https://testanything.org/

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/461>
2020-05-19 13:14:46 +00:00

14 lines
310 B
Meson

if not get_option('benchmarks').disabled()
subdir('benchmarks')
endif
if not get_option('tests').disabled() and gst_check_dep.found()
subdir('validate')
subdir('check')
endif
if not get_option('examples').disabled()
subdir('examples')
endif
if not get_option('tools').disabled()
subdir('misc')
endif