From ccaebf8c5a661689694199fa7b5f6a73e42a1b76 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Tue, 12 Feb 2019 19:06:56 +0100 Subject: [PATCH] buildsys: add `make check` People familiar with automake based build systems expect this to work, and it also saves me some typing ;-) --- Makefile.rules | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile.rules b/Makefile.rules index 26373272cc..3ab3fb23ce 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -1014,6 +1014,10 @@ testbugfix: all ReadGapRoot( "tst/testbugfix.g" );' | $(TESTGAP) | \ tee `date -u +dev/log/testbugfix2_%Y-%m-%d-%H-%M` ) +# +check: + $(TESTGAP) tst/testinstall.g + LIBGAPTESTS := $(addprefix tst/testlibgap/,basic wscreate wsload) # run a test in tst/testlibgap @@ -1035,6 +1039,7 @@ testlibgap: ${LIBGAPTESTS} .PHONY: testinstall testmanuals testobsoletes teststandard testbugfix .PHONY: testpackage testpackages testpackagesload testpackagesvars +.PHONY: check ######################################################################## # Bootstrap rules