masqmail-0.2
diff tests/makefile @ 63:49ca781e1503
reworked the test cases completely
they are split into four independent tests now
and each one is tested to work with the current version
author | meillo@marmaro.de |
---|---|
date | Sun, 30 May 2010 16:05:49 +0200 |
parents | tests/Makefile@3cb6f383f07e |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/tests/makefile Sun May 30 16:05:49 2010 +0200 1.3 @@ -0,0 +1,24 @@ 1.4 + 1.5 +all: 1.6 + cd hostname-stdin && make 1.7 + cd localhost-stdin && make 1.8 + cd relay-to-localhost-mta && make 1.9 + cd relay-to-hostname-mta && make 1.10 + 1.11 +run: all 1.12 + cd hostname-stdin && ./test 1.13 + cd localhost-stdin && ./test 1.14 + cd relay-to-localhost-mta && ./test 1.15 + cd relay-to-hostname-mta && ./test 1.16 + 1.17 +clean: 1.18 + cd hostname-stdin && make clean 1.19 + cd localhost-stdin && make clean 1.20 + cd relay-to-localhost-mta && make clean 1.21 + cd relay-to-hostname-mta && make clean 1.22 + 1.23 +realclean: 1.24 + cd hostname-stdin && make realclean 1.25 + cd localhost-stdin && make realclean 1.26 + cd relay-to-localhost-mta && make realclean 1.27 + cd relay-to-hostname-mta && make realclean