aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index a4604cc67f..5f551d4ed5 100644
--- a/Makefile
+++ b/Makefile
@@ -77,8 +77,10 @@ endif
oldtest: | nvim
+$(SINGLE_MAKE) -C src/nvim/testdir $(MAKEOVERRIDES)
-test: | nvim
- +$(BUILD_CMD) -C build test
+functionaltest: | nvim
+ +$(BUILD_CMD) -C build functionaltest
+
+test: functionaltest
unittest: | nvim
+$(BUILD_CMD) -C build unittest
@@ -93,4 +95,4 @@ distclean: clean
install: | nvim
+$(BUILD_CMD) -C build install
-.PHONY: test unittest clean distclean nvim cmake deps install
+.PHONY: test functionaltest unittest clean distclean nvim cmake deps install