summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2016-04-23 08:53:07 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2016-04-23 08:53:07 -0400
commit2905b9f9ab5c5ed6f9210d1d843a8bcf41451854 (patch)
treed3bb968dbcb9f22856de345d0df5ecf2a44d594f /Makefile.in
parentquiterss profile (diff)
downloadfirejail-2905b9f9ab5c5ed6f9210d1d843a8bcf41451854.tar.gz
firejail-2905b9f9ab5c5ed6f9210d1d843a8bcf41451854.tar.zst
firejail-2905b9f9ab5c5ed6f9210d1d843a8bcf41451854.zip
make test-utils
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index b749d7f2f..93104bc02 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -242,6 +242,7 @@ dist:
242 cd $(NAME)-$(VERSION); cp -a ../COPYING .; cp -a ../README .; cp -a ../RELNOTES .; cd .. 242 cd $(NAME)-$(VERSION); cp -a ../COPYING .; cp -a ../README .; cp -a ../RELNOTES .; cd ..
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); rm -fr `find . -name .svn`; rm -fr $(NAME)-$(VERSION); cd .. 246 cd $(NAME)-$(VERSION); rm -fr `find . -name .svn`; rm -fr $(NAME)-$(VERSION); cd ..
246 tar -cjvf $(NAME)-$(VERSION).tar.bz2 $(NAME)-$(VERSION) 247 tar -cjvf $(NAME)-$(VERSION).tar.bz2 $(NAME)-$(VERSION)
247 rm -fr $(NAME)-$(VERSION) 248 rm -fr $(NAME)-$(VERSION)
@@ -270,5 +271,8 @@ test-profiles:
270test-apps: 271test-apps:
271 cd test/apps; ./apps.sh | grep TESTING 272 cd test/apps; ./apps.sh | grep TESTING
272 273
273test: test-profiles test-apps 274test-utils:
275 cd test/utils; ./utils.sh | grep TESTING
276
277test: test-profiles test-utils test-apps
274 echo "TEST COMPLETE" 278 echo "TEST COMPLETE"