From 574a63ee928c9723f7ae01a915628721fae0d71a Mon Sep 17 00:00:00 2001 From: Nick Treleaven Date: Fri, 14 Jun 2024 13:27:18 +0100 Subject: [PATCH] Document running a single unittest --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 89704a431ee..67e28d310d0 100644 --- a/Makefile +++ b/Makefile @@ -15,6 +15,9 @@ # make BUILD=debug => makes debug build of the library # # make unittest => builds all unittests (for debug AND release) and runs them +# make std/somemodule.test => only builds and unittests std.somemodule +# make std/somepackage.test => only builds and unittests modules in std.somepackage +# make unittest/std/somemodule.run => run std.somemodule unittest # # make BUILD=debug unittest => builds all unittests (for debug) and runs them # @@ -25,8 +28,6 @@ # # make install => copies library to /usr/lib # -# make std/somemodule.test => only builds and unittests std.somemodule -# ################################################################################ # Configurable stuff, usually from the command line #