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:
Daniel Hahler 2019-07-12 15:15:15 +02:00 committed by GitHub
parent dd94165f4e
commit ec66d2eecd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -99,8 +99,7 @@ RM_ON_RUN := test.out X* viminfo
RM_ON_START := test.ok
RUN_VIM := $(TOOL) $(NVIM_PRG) -u unix.vim -U NONE -i viminfo --headless --noplugin -s dotest.in
clean:
-rm -rf *.out \
CLEAN_FILES := *.out \
*.failed \
*.res \
*.rej \
@ -116,6 +115,8 @@ clean:
.gdbinit \
$(TMPDIR) \
del
clean:
$(RM) -rf $(CLEAN_FILES)
test1.out: .gdbinit test1.in
@echo "[OLDTEST-PREP] Running test1"