summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2016-04-23 16:16:51 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2016-04-23 16:16:51 -0400
commit7e1c057aeda3b598838cb66b9e827fc087f70c54 (patch)
tree6d13b82ed69f1d3a5b5973072e2b5cc3ea3eca16 /Makefile.in
parenthexchat profile (diff)
downloadfirejail-7e1c057aeda3b598838cb66b9e827fc087f70c54.tar.gz
firejail-7e1c057aeda3b598838cb66b9e827fc087f70c54.tar.zst
firejail-7e1c057aeda3b598838cb66b9e827fc087f70c54.zip
make testing
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in10
1 files changed, 9 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 93104bc02..c93fc401d 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -243,6 +243,8 @@ dist:
243 cd $(NAME)-$(VERSION); mkdir -p test; cp -a ../test/profiles test/.; cd .. 243 cd $(NAME)-$(VERSION); mkdir -p test; cp -a ../test/profiles test/.; cd ..
244 cd $(NAME)-$(VERSION); mkdir -p test; cp -a ../test/apps test/.; cd .. 244 cd $(NAME)-$(VERSION); mkdir -p test; cp -a ../test/apps test/.; cd ..
245 cd $(NAME)-$(VERSION); mkdir -p test; cp -a ../test/utils test/.; cd .. 245 cd $(NAME)-$(VERSION); mkdir -p test; cp -a ../test/utils test/.; cd ..
246 cd $(NAME)-$(VERSION); mkdir -p test; cp -a ../test/apps-x11 test/.; cd ..
247 cd $(NAME)-$(VERSION); mkdir -p test; cp -a ../test/firemon test/.; cd ..
246 cd $(NAME)-$(VERSION); rm -fr `find . -name .svn`; rm -fr $(NAME)-$(VERSION); cd .. 248 cd $(NAME)-$(VERSION); rm -fr `find . -name .svn`; rm -fr $(NAME)-$(VERSION); cd ..
247 tar -cjvf $(NAME)-$(VERSION).tar.bz2 $(NAME)-$(VERSION) 249 tar -cjvf $(NAME)-$(VERSION).tar.bz2 $(NAME)-$(VERSION)
248 rm -fr $(NAME)-$(VERSION) 250 rm -fr $(NAME)-$(VERSION)
@@ -271,8 +273,14 @@ test-profiles:
271test-apps: 273test-apps:
272 cd test/apps; ./apps.sh | grep TESTING 274 cd test/apps; ./apps.sh | grep TESTING
273 275
276test-apps-x11:
277 cd test/apps-x11; ./apps-x11.sh | grep TESTING
278
279test-firemon:
280 cd test/firemon; ./firemon.sh | grep TESTING
281
274test-utils: 282test-utils:
275 cd test/utils; ./utils.sh | grep TESTING 283 cd test/utils; ./utils.sh | grep TESTING
276 284
277test: test-profiles test-utils test-apps 285test: test-profiles test-utils test-apps test-apps-x11 test-firemon
278 echo "TEST COMPLETE" 286 echo "TEST COMPLETE"