aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorLibravatar Reiner Herrmann <reiner@reiner-h.de>2021-03-01 20:44:31 +0100
committerLibravatar Reiner Herrmann <reiner@reiner-h.de>2021-03-01 20:45:28 +0100
commit396eb2ec7c99ca8b14be04bcce94984a1237c314 (patch)
tree7ed5fadc07b29a7cacf180ab65cb61ae9e9890c1 /Makefile.in
parenttests: drop (f)audit from tests (diff)
downloadfirejail-396eb2ec7c99ca8b14be04bcce94984a1237c314.tar.gz
firejail-396eb2ec7c99ca8b14be04bcce94984a1237c314.tar.zst
firejail-396eb2ec7c99ca8b14be04bcce94984a1237c314.zip
tests: also remove arguments tests which also depend on faudit
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in
index dae2079b4..c9ebb7916 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -191,7 +191,7 @@ uninstall:
191 @echo "If you want to install a different version of firejail, you might also need to run 'rm -fr $(DESTDIR)$(sysconfdir)/firejail', see #2038." 191 @echo "If you want to install a different version of firejail, you might also need to run 'rm -fr $(DESTDIR)$(sysconfdir)/firejail', see #2038."
192 192
193DISTFILES = "src etc m4 platform contrib configure configure.ac Makefile.in install.sh mkman.sh mketc.sh mkdeb.sh.in COPYING README RELNOTES" 193DISTFILES = "src etc m4 platform contrib configure configure.ac Makefile.in install.sh mkman.sh mketc.sh mkdeb.sh.in COPYING README RELNOTES"
194DISTFILES_TEST = "test/Makefile.in test/apps test/apps-x11 test/apps-x11-xorg test/root test/private-lib test/fnetfilter test/fcopy test/environment test/profiles test/utils test/compile test/filters test/network test/arguments test/fs test/sysutils test/chroot" 194DISTFILES_TEST = "test/Makefile.in test/apps test/apps-x11 test/apps-x11-xorg test/root test/private-lib test/fnetfilter test/fcopy test/environment test/profiles test/utils test/compile test/filters test/network test/fs test/sysutils test/chroot"
195 195
196dist: 196dist:
197 mv config.status config.status.old 197 mv config.status config.status.old
@@ -237,19 +237,19 @@ scan-build: clean
237# make test 237# make test
238# 238#
239 239
240TESTS=profiles private-lib apps apps-x11 apps-x11-xorg sysutils utils environment filters arguments fs fcopy fnetfilter 240TESTS=profiles private-lib apps apps-x11 apps-x11-xorg sysutils utils environment filters fs fcopy fnetfilter
241TEST_TARGETS=$(patsubst %,test-%,$(TESTS)) 241TEST_TARGETS=$(patsubst %,test-%,$(TESTS))
242 242
243$(TEST_TARGETS): 243$(TEST_TARGETS):
244 $(MAKE) -C test $(subst test-,,$@) 244 $(MAKE) -C test $(subst test-,,$@)
245 245
246test: test-profiles test-private-lib test-fcopy test-fnetfilter test-fs test-utils test-sysutils test-environment test-apps test-apps-x11 test-apps-x11-xorg test-filters test-arguments 246test: test-profiles test-private-lib test-fcopy test-fnetfilter test-fs test-utils test-sysutils test-environment test-apps test-apps-x11 test-apps-x11-xorg test-filters
247 echo "TEST COMPLETE" 247 echo "TEST COMPLETE"
248 248
249test-noprofiles: test-private-lib test-fcopy test-fnetfilter test-fs test-utils test-sysutils test-environment test-apps test-apps-x11 test-apps-x11-xorg test-filters test-arguments 249test-noprofiles: test-private-lib test-fcopy test-fnetfilter test-fs test-utils test-sysutils test-environment test-apps test-apps-x11 test-apps-x11-xorg test-filters
250 echo "TEST COMPLETE" 250 echo "TEST COMPLETE"
251 251
252test-github: test-profiles test-fcopy test-fnetfilter test-fs test-utils test-sysutils test-environment test-arguments 252test-github: test-profiles test-fcopy test-fnetfilter test-fs test-utils test-sysutils test-environment
253 echo "TEST COMPLETE" 253 echo "TEST COMPLETE"
254 254
255########################################## 255##########################################