From b1b06a7c125acf5c2135ee445dbcfe9a32e719f8 Mon Sep 17 00:00:00 2001 From: maedoc Date: Fri, 29 Jan 2016 17:17:18 +0100 Subject: [PATCH] pluralize test executable name --- .travis.yml | 8 ++++---- makefile | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index b12a138..60e783f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,11 +7,11 @@ before_install: - pip install --user cpp-coveralls cython language: c install: - - make test - - make -B BUILD=cov test + - make tests + - make -B BUILD=cov tests script: - - valgrind --error-exitcode=1 --track-origins=yes --leak-check=full ./test - - ./testcov + - valgrind --error-exitcode=1 --track-origins=yes --leak-check=full ./tests + - ./testscov - cd python && make test && cd .. after_success: - coveralls --gcov-options '-o ./ src/*.c' diff --git a/makefile b/makefile index 6698652..46a6618 100644 --- a/makefile +++ b/makefile @@ -43,14 +43,14 @@ endif # artifacts {{{ -test$(EXE): $(o_lib) $(o_test) - $(CC) $(CFLAGS) test/main.c $^ -o test$(BUILD)$(EXE) $(LDFLAGS) +tests$(EXE): $(o_lib) $(o_test) + $(CC) $(CFLAGS) test/main.c $^ -o tests$(BUILD)$(EXE) $(LDFLAGS) libSDDEKit.$(DLLEXT): $(o_lib) $(CC) -shared $^ -o libSDDEKit.$(DLLEXT) $(LDFLAGS) clean: - $(RM) $(o_lib) $(o_test) test* *.dat *.exe *.$(DLLEXT) + $(RM) $(o_lib) $(o_test) tests* *.dat *.exe *.$(DLLEXT) # }}} -- 2.11.4.GIT