mirror of
https://github.com/vim/vim.git
synced 2025-10-14 07:04:10 -04:00
patch 8.1.0595: libvterm tests are not run with coverage
Problem: Libvterm tests are not run with coverage. Solution: Adjust the Travis config. Show the actually run commands.
This commit is contained in:
@@ -58,30 +58,24 @@ MAN3DIR=$(MANDIR)/man3
|
||||
all: $(LIBRARY) $(BINFILES)
|
||||
|
||||
$(LIBRARY): $(OBJECTS)
|
||||
@echo LINK $@
|
||||
@$(LIBTOOL) --mode=link --tag=CC $(CC) -rpath $(LIBDIR) -version-info $(VERSION_CURRENT):$(VERSION_REVISION):$(VERSION_AGE) -o $@ $^ $(LDFLAGS)
|
||||
$(LIBTOOL) --mode=link --tag=CC $(CC) -rpath $(LIBDIR) -version-info $(VERSION_CURRENT):$(VERSION_REVISION):$(VERSION_AGE) -o $@ $^ $(LDFLAGS)
|
||||
|
||||
src/%.lo: src/%.c $(HFILES_INT)
|
||||
@echo CC $<
|
||||
@$(LIBTOOL) --mode=compile --tag=CC $(CC) $(CFLAGS) -o $@ -c $<
|
||||
$(LIBTOOL) --mode=compile --tag=CC $(CC) $(CFLAGS) -o $@ -c $<
|
||||
|
||||
src/encoding/%.inc: src/encoding/%.tbl
|
||||
@echo TBL $<
|
||||
@perl -CSD tbl2inc_c.pl $< >$@
|
||||
perl -CSD tbl2inc_c.pl $< >$@
|
||||
|
||||
src/encoding.lo: $(INCFILES)
|
||||
|
||||
bin/%: bin/%.c $(LIBRARY)
|
||||
@echo CC $<
|
||||
@$(LIBTOOL) --mode=link --tag=CC $(CC) $(CFLAGS) -o $@ $< -lvterm $(LDFLAGS)
|
||||
$(LIBTOOL) --mode=link --tag=CC $(CC) $(CFLAGS) -o $@ $< -lvterm $(LDFLAGS)
|
||||
|
||||
t/harness.lo: t/harness.c $(HFILES)
|
||||
@echo CC $<
|
||||
@$(LIBTOOL) --mode=compile --tag=CC $(CC) $(CFLAGS) -o $@ -c $<
|
||||
$(LIBTOOL) --mode=compile --tag=CC $(CC) $(CFLAGS) -o $@ -c $<
|
||||
|
||||
t/harness: t/harness.lo $(LIBRARY)
|
||||
@echo LINK $@
|
||||
@$(LIBTOOL) --mode=link --tag=CC $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
|
||||
$(LIBTOOL) --mode=link --tag=CC $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
|
||||
|
||||
.PHONY: test
|
||||
test: $(LIBRARY) t/harness
|
||||
|
||||
@@ -799,6 +799,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
595,
|
||||
/**/
|
||||
594,
|
||||
/**/
|
||||
|
||||
Reference in New Issue
Block a user