mirror of
https://github.com/neovim/neovim.git
synced 2026-04-24 08:15:41 +00:00
Merge pull request #3751 from Pyrohh/make_test
[RFC] Make `make test` run unit tests too
This commit is contained in:
4
Makefile
4
Makefile
@@ -89,14 +89,14 @@ functionaltest: | nvim
|
||||
testlint: | nvim
|
||||
$(BUILD_CMD) -C build testlint
|
||||
|
||||
test: functionaltest
|
||||
|
||||
unittest: | nvim
|
||||
+$(BUILD_CMD) -C build unittest
|
||||
|
||||
benchmark: | nvim
|
||||
+$(BUILD_CMD) -C build benchmark
|
||||
|
||||
test: functionaltest unittest
|
||||
|
||||
clean:
|
||||
+test -d build && $(BUILD_CMD) -C build clean || true
|
||||
$(MAKE) -C src/nvim/testdir clean
|
||||
|
||||
Reference in New Issue
Block a user