From 8f9b28b759253dec075cdf4e0d55a6f3007332e9 Mon Sep 17 00:00:00 2001 From: Jan-Erik Rediger Date: Sat, 1 Jun 2024 19:17:14 +0200 Subject: [PATCH] add a test target --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5f9ec78..96ffe70 100644 --- a/Makefile +++ b/Makefile @@ -42,4 +42,7 @@ install: httpd uninstall: rm -f $(DESTDIR)$(BINDIR)/httpd -.PHONY: all check clean install uninstall +test: httpd + hurl --test test/api.hurl + +.PHONY: all check clean install uninstall test