aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2016-11-13 20:35:12 -0500
committerLibravatar netblue30 <netblue30@yahoo.com>2016-11-13 20:35:12 -0500
commit2f8688a17eb9f20d15b1ac53cb58c2759987ed71 (patch)
treefee7cf10a8f7c45f0d34ce3535801b2ee256dee8 /Makefile.in
parentmajor cleanup and testing (diff)
downloadfirejail-2f8688a17eb9f20d15b1ac53cb58c2759987ed71.tar.gz
firejail-2f8688a17eb9f20d15b1ac53cb58c2759987ed71.tar.zst
firejail-2f8688a17eb9f20d15b1ac53cb58c2759987ed71.zip
testing
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in16
1 files changed, 5 insertions, 11 deletions
diff --git a/Makefile.in b/Makefile.in
index 8649475dd..86fd4f4b7 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -39,7 +39,6 @@ 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 gcov-test-initialized
43 rm -f $(MANPAGES) $(MANPAGES:%=%.gz) firejail*.rpm 42 rm -f $(MANPAGES) $(MANPAGES:%=%.gz) firejail*.rpm
44 rm -f test/utils/index.html* 43 rm -f test/utils/index.html*
45 rm -f test/utils/wget-log 44 rm -f test/utils/wget-log
@@ -146,7 +145,7 @@ uninstall:
146 rm -f $(DESTDIR)/$(datarootdir)/bash-completion/completions/firecfg 145 rm -f $(DESTDIR)/$(datarootdir)/bash-completion/completions/firecfg
147 146
148DISTFILES = "src etc platform configure configure.ac Makefile.in install.sh mkman.sh mketc.sh mkdeb.sh mkuid.sh COPYING README RELNOTES" 147DISTFILES = "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/root test/environment test/profiles test/utils test/compile test/filters test/network test/arguments test/fs test/sysutils" 148DISTFILES_TEST = "test/rlimit 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 149
151dist: 150dist:
152 mv config.status config.status.old 151 mv config.status config.status.old
@@ -188,14 +187,6 @@ cppcheck: clean
188scan-build: clean 187scan-build: clean
189 scan-build make 188 scan-build make
190 189
191gcov-test-initialized:
192 ./gcov-test-init.sh
193
194gcov: gcov-test-initialized
195 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
196 rm -fr gcov-dir
197 genhtml gcov-file --output-directory gcov-dir
198
199 190
200# 191#
201# make test 192# make test
@@ -232,7 +223,10 @@ test-arguments:
232test-fs: 223test-fs:
233 cd test/fs; ./fs.sh | grep TESTING 224 cd test/fs; ./fs.sh | grep TESTING
234 225
235test: test-profiles test-fs test-utils test-environment test-apps test-apps-x11 test-apps-x11-xorg test-filters test-arguments 226test-rlimit:
227 cd test/rlimit; ./rlimit.sh | grep TESTING
228
229test: test-profiles test-fs test-utils test-environment test-apps test-apps-x11 test-apps-x11-xorg test-filters test-arguments test-rlimit
236 echo "TEST COMPLETE" 230 echo "TEST COMPLETE"
237 231
238########################################## 232##########################################