exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit f2cb4a1d69daec3cb99e068b9fe00b8342785dc7
parent ac0db33c36e7c564440ad8b11778a74ef3550686
Author: Florian Dold <florian@dold.me>
Date:   Wed,  6 May 2026 19:15:42 +0200

add allcheck target

Diffstat:
MMakefile.in | 7++++++-
1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/Makefile.in b/Makefile.in @@ -28,11 +28,16 @@ dist: doxygen: $(NINJA) -C $(mesonbuilddir) doxygen -# Run tests +# Run unit tests .PHONY: check check: $(MESON) test -C $(mesonbuilddir) --maxfail 999 --timeout-multiplier 4 +# Run all tests +.PHONY: allcheck +allcheck: + $(MESON) test -C $(mesonbuilddir) --setup=all --maxfail 999 --timeout-multiplier 4 + .PHONY: installcheck installcheck: $(MESON) test -C $(mesonbuilddir) --suite=installcheck --maxfail 999 --timeout-multiplier 4