summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-03-24 17:27:51 +0200
committerPaul Buetow <paul@buetow.org>2025-03-24 17:27:51 +0200
commit63470be96bb8c8d5c2c1f9949d86bbcbd4149c12 (patch)
tree0d2059f8f690d0a9e1cb0b4b397759f11241633a
parentec72ef1e68cdbd6938c713294dab97ecee25dc68 (diff)
initial test target
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3935361..6c5b10e 100644
--- a/Makefile
+++ b/Makefile
@@ -71,4 +71,8 @@ inferno:
prof:
$(GO) tool pprof -pdf ./ior ior.cpuprofile > cpuprofile.pdf && evince cpuprofile.pdf &
$(GO) tool pprof -pdf ./ior ior.memprofile > memprofile.pdf && evince memprofile.pdf &
-
+
+.PHONY: test
+test:
+ $(GO) clean -testcache
+ $(GO) test ./... -v