Add test target and Travis config file
This commit is contained in:
parent
dffed0ab24
commit
887245a493
|
@ -1,2 +1,5 @@
|
|||
language: d
|
||||
sudo: false
|
||||
language: d
|
||||
script:
|
||||
- git submodule update --init --recursive
|
||||
- make test
|
||||
|
|
4
makefile
4
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
|
||||
|
|
Loading…
Reference in New Issue