renewed tests
[deployable.git] / t / 01 / Makefile
blobca787f821a08b1b6c39df3672b9817d20ab75409
1 all:
2 ../../deployable --output test.pl --bundle \
3 hello.sh \
4 --rootdir rootdir_1 \
5 --rootdir rootdir_2 \
6 --root root_1 \
7 --root root_2
9 extract:
10 rm -rf prova
11 mkdir -p prova/root prova/here
12 ./test.pl --here-tar | ( cd prova/here ; tar xvf - )
13 cd prova/here && ls -R > ../here.list
14 ./test.pl --root-tar | ( cd prova/root ; tar xvf - )
15 cd prova/root && ls -R > ../root.list
17 test: all extract
18 diff here.list prova/here.list
19 diff root.list prova/root.list
20 echo -e "\nall tests successful"
22 clean:
23 rm -rf prova