From eb6e8460230b62f5bc9231371a75666bfb4486c7 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Mon, 5 Feb 2018 16:44:40 +0100 Subject: [PATCH] README.md: use 'meson test' instead of 'mesontest' The latter has been deprecated. https://bugzilla.gnome.org/show_bug.cgi?id=793190 --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 80585904b0..e27e2c1d67 100644 --- a/README.md +++ b/README.md @@ -88,25 +88,25 @@ ninja You can easily run the test of all the components: ``` -mesontest -C build +meson test -C build ``` To list all available tests: ``` -mesontest -C build --list +meson test -C build --list ``` To run all the tests of a specific component: ``` -mesontest -C build --suite gst-plugins-base +meson test -C build --suite gst-plugins-base ``` Or to run a specific test: ``` -mesontest -C build/ --suite gstreamer gst/gstbuffer +meson test -C build/ --suite gstreamer gst/gstbuffer ``` ## Add information about GStreamer development environment in your prompt line