mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
oldtest: more compact output with "clean" target (#10477)
Previously it would be displayed across multiple lines (with the escaped newlines), while this makes it display in a single line.
This commit is contained in:
parent
dd94165f4e
commit
ec66d2eecd
@ -99,23 +99,24 @@ RM_ON_RUN := test.out X* viminfo
|
|||||||
RM_ON_START := test.ok
|
RM_ON_START := test.ok
|
||||||
RUN_VIM := $(TOOL) $(NVIM_PRG) -u unix.vim -U NONE -i viminfo --headless --noplugin -s dotest.in
|
RUN_VIM := $(TOOL) $(NVIM_PRG) -u unix.vim -U NONE -i viminfo --headless --noplugin -s dotest.in
|
||||||
|
|
||||||
|
CLEAN_FILES := *.out \
|
||||||
|
*.failed \
|
||||||
|
*.res \
|
||||||
|
*.rej \
|
||||||
|
*.orig \
|
||||||
|
*.tlog \
|
||||||
|
test.log \
|
||||||
|
messages \
|
||||||
|
$(RM_ON_RUN) \
|
||||||
|
$(RM_ON_START) \
|
||||||
|
valgrind.* \
|
||||||
|
.*.swp \
|
||||||
|
.*.swo \
|
||||||
|
.gdbinit \
|
||||||
|
$(TMPDIR) \
|
||||||
|
del
|
||||||
clean:
|
clean:
|
||||||
-rm -rf *.out \
|
$(RM) -rf $(CLEAN_FILES)
|
||||||
*.failed \
|
|
||||||
*.res \
|
|
||||||
*.rej \
|
|
||||||
*.orig \
|
|
||||||
*.tlog \
|
|
||||||
test.log \
|
|
||||||
messages \
|
|
||||||
$(RM_ON_RUN) \
|
|
||||||
$(RM_ON_START) \
|
|
||||||
valgrind.* \
|
|
||||||
.*.swp \
|
|
||||||
.*.swo \
|
|
||||||
.gdbinit \
|
|
||||||
$(TMPDIR) \
|
|
||||||
del
|
|
||||||
|
|
||||||
test1.out: .gdbinit test1.in
|
test1.out: .gdbinit test1.in
|
||||||
@echo "[OLDTEST-PREP] Running test1"
|
@echo "[OLDTEST-PREP] Running test1"
|
||||||
|
Loading…
Reference in New Issue
Block a user