aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJP Appel <jeanpierre.appel01@gmail.com>2026-04-03 00:48:51 -0400
committerJP Appel <jeanpierre.appel01@gmail.com>2026-04-03 00:48:51 -0400
commit9e8a3eb08d2a3b87f26bac51af242b3e63e3469a (patch)
treee754fdfbba64c2d125c667af0d7dc44db4cfb011
parentace2bbbd2411382d873580104a60ab0f1fe2bfa9 (diff)
Change test output to work better when within nvimHEADmain
-rw-r--r--makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/makefile b/makefile
index ab35497..5af28d0 100644
--- a/makefile
+++ b/makefile
@@ -11,7 +11,7 @@ atlas: $(SRC)
go build -tags "$(BUILD_TAGS)" -o $@ $<
test:
- go test -tags "$(BUILD_TAGS)" ./...
+ go test $(if $(subst undefined,,$(origin VIMRUNTIME)), -fullpath) -tags "$(BUILD_TAGS)" ./...
########
#
@@ -32,6 +32,7 @@ uninstall: $(INSTALL_PATH)/atlas
info:
@echo "SRC: $(SRC)"
@echo "BINS: $(BINS)"
+ @echo "TEST_BINS: $(TEST_BINS)"
@echo "INSTALL_PATH: $(INSTALL_PATH)"
@echo "BUILD_TAGS: $(BUILD_TAGS)"