From 483607af3a4711f6c5052d9629bc9916fc4e1dfe Mon Sep 17 00:00:00 2001 From: George Kiagiadakis Date: Tue, 30 Oct 2018 20:05:08 +0200 Subject: [PATCH] Makefile: add 'make test' target to run the automated unit tests --- Makefile.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile.in b/Makefile.in index 19e3b5629..1e58764e6 100644 --- a/Makefile.in +++ b/Makefile.in @@ -19,6 +19,9 @@ gdb: valgrind: $(MAKE) run DBG="DISABLE_RTKIT=1 valgrind" +test: all + ninja -C build test + monitor: all SPA_PLUGIN_DIR=build/spa/plugins \ PIPEWIRE_MODULE_DIR=build/src/modules/ \