renewed tests
[deployable.git] / t / 02 / Makefile
blob16ee8df1537e1ec85735277bef73703d28c336c1
1 all:
2 ../../deployable --output test.pl --bundle --no-tar \
3 hello.sh \
4 --root root
6 extract:
7 rm -rf prova
8 mkdir -p prova/root prova/here
9 ./test.pl --here-tar | ( cd prova/here ; tar xvf - )
10 cd prova/here && ls -R > ../here.list
11 ./test.pl --root-tar | ( cd prova/root ; tar xvf - )
12 cd prova/root && ls -R > ../root.list
14 test: all extract
15 diff here.list prova/here.list
16 diff root.list prova/root.list
17 echo -e "\nall tests successful"
19 clean:
20 rm -rf prova extracted