aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2016-11-09 19:17:06 -0500
committerLibravatar netblue30 <netblue30@yahoo.com>2016-11-09 19:17:06 -0500
commit35004af7d8f6ff19908fb89e25e532113afa26f4 (patch)
tree991c7c279e0629e3de36a1d9453ab2513a38be1d /Makefile.in
parentbugfix: crashing vlc when pressing Ctrl-O (diff)
downloadfirejail-35004af7d8f6ff19908fb89e25e532113afa26f4.tar.gz
firejail-35004af7d8f6ff19908fb89e25e532113afa26f4.tar.zst
firejail-35004af7d8f6ff19908fb89e25e532113afa26f4.zip
testing
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in11
1 files changed, 7 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in
index d93eee502..41885ddcf 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -39,7 +39,7 @@ clean:
39 for dir in $(APPS) $(MYLIBS); do \ 39 for dir in $(APPS) $(MYLIBS); do \
40 $(MAKE) -C $$dir clean; \ 40 $(MAKE) -C $$dir clean; \
41 done 41 done
42 rm -fr gcov-file gcov-dir 42 rm -fr gcov-file gcov-dir gcov-test-initialized
43 rm -f $(MANPAGES) $(MANPAGES:%=%.gz) firejail*.rpm 43 rm -f $(MANPAGES) $(MANPAGES:%=%.gz) firejail*.rpm
44 rm -f test/utils/index.html* 44 rm -f test/utils/index.html*
45 rm -f test/utils/wget-log 45 rm -f test/utils/wget-log
@@ -146,7 +146,7 @@ uninstall:
146 rm -f $(DESTDIR)/$(datarootdir)/bash-completion/completions/firecfg 146 rm -f $(DESTDIR)/$(datarootdir)/bash-completion/completions/firecfg
147 147
148DISTFILES = "src etc platform configure configure.ac Makefile.in install.sh mkman.sh mketc.sh mkdeb.sh mkuid.sh COPYING README RELNOTES" 148DISTFILES = "src etc platform configure configure.ac Makefile.in install.sh mkman.sh mketc.sh mkdeb.sh mkuid.sh COPYING README RELNOTES"
149DISTFILES_TEST = "test/apps test/apps-x11 test/apps-x11-xorg test/environment test/profiles test/utils test/compile test/filters test/network test/fs test/sysutils" 149DISTFILES_TEST = "test/apps test/apps-x11 test/apps-x11-xorg test/root test/environment test/profiles test/utils test/compile test/filters test/network test/arguments test/fs test/sysutils"
150 150
151dist: 151dist:
152 mv config.status config.status.old 152 mv config.status config.status.old
@@ -219,7 +219,7 @@ test-arguments:
219 cd test/arguments; ./arguments.sh | grep TESTING 219 cd test/arguments; ./arguments.sh | grep TESTING
220 220
221test-network: 221test-network:
222 echo "Please read test/network/README file and run the test manually" 222 cd test/network; ./network.sh | grep TESTING
223 223
224test-fs: 224test-fs:
225 cd test/fs; ./fs.sh | grep TESTING 225 cd test/fs; ./fs.sh | grep TESTING
@@ -227,7 +227,10 @@ test-fs:
227test: test-profiles test-fs test-utils test-environment test-apps test-apps-x11 test-apps-x11-xorg test-filters test-arguments 227test: test-profiles test-fs test-utils test-environment test-apps test-apps-x11 test-apps-x11-xorg test-filters test-arguments
228 echo "TEST COMPLETE" 228 echo "TEST COMPLETE"
229 229
230gcov:; 230gcov-test-initialized:
231 ./gcov-test-init.sh
232
233gcov: gcov-test-initialized
231 lcov --capture -d src/firejail -d src/firemon -d src/fseccomp -d src/fnet -d src/ftee -d src/lib -d src/firecfg --output-file gcov-file 234 lcov --capture -d src/firejail -d src/firemon -d src/fseccomp -d src/fnet -d src/ftee -d src/lib -d src/firecfg --output-file gcov-file
232 rm -fr gcov-dir 235 rm -fr gcov-dir
233 genhtml gcov-file --output-directory gcov-dir 236 genhtml gcov-file --output-directory gcov-dir