blob: e10905aff9fa836011c974afe3a9c83e0f14eb72 (
plain)
1
2
3
4
5
6
7
8
9
10
|
NVIM ?= nvim
.PHONY: test
test:
NVIM_LOG_FILE=/dev/null $(NVIM) --headless -u NONE -i NONE -l tests/run.lua
NVIM_LOG_FILE=/dev/null $(NVIM) --headless -u NONE -i NONE -l tests/conformance.lua
NVIM_LOG_FILE=/dev/null $(NVIM) --headless -u NONE -i NONE -l tests/phase16.lua
NVIM_LOG_FILE=/dev/null $(NVIM) --headless -u NONE -i NONE -l tests/host_adapter_contract.lua
NVIM_LOG_FILE=/dev/null $(NVIM) --headless -u NONE -i NONE -l tests/plugin_smoke.lua
|