From 887245a493dd7c5c3c62f3253ad254f84bef55f8 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Fri, 18 Sep 2015 11:48:03 -0700 Subject: [PATCH] Add test target and Travis config file --- .travis.yml | 5 ++++- makefile | 4 +++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index cf18889..d3ce18a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,2 +1,5 @@ -language: d sudo: false +language: d +script: + - git submodule update --init --recursive + - make test diff --git a/makefile b/makefile index 0de7db3..c5cecc1 100644 --- a/makefile +++ b/makefile @@ -46,7 +46,9 @@ ldcbuild: githash ${LDC} -O5 -release -oq -of=bin/dscanner ${VERSIONS} ${INCLUDE_PATHS} ${SRC} -J. test: - @./test.sh + ${DC} -w -g -J. -unittest ${INCLUDE_PATHS} ${SRC} -ofbin/dscanner-unittest -version=StdLoggerDisableWarning + ./bin/dscanner-unittest + rm -f bin/dscanner-unittest clean: rm -rf dsc