aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@protonmail.com>2023-01-18 23:18:19 -0500
committerLibravatar netblue30 <netblue30@protonmail.com>2023-01-18 23:18:19 -0500
commit8a5ec7b1076034938712500ac4fe55b9f86ae966 (patch)
tree3bffb1d6e5d238be47354baf1f3eca48a13022f2 /Makefile
parentMerge branch 'master' of ssh://github.com/netblue30/firejail (diff)
downloadfirejail-8a5ec7b1076034938712500ac4fe55b9f86ae966.tar.gz
firejail-8a5ec7b1076034938712500ac4fe55b9f86ae966.tar.zst
firejail-8a5ec7b1076034938712500ac4fe55b9f86ae966.zip
some profile updates
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 9 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 57a692817..ad20921ba 100644
--- a/Makefile
+++ b/Makefile
@@ -274,13 +274,19 @@ TEST_TARGETS=$(patsubst %,test-%,$(TESTS))
274$(TEST_TARGETS): 274$(TEST_TARGETS):
275 $(MAKE) -C test $(subst test-,,$@) 275 $(MAKE) -C test $(subst test-,,$@)
276 276
277test: test-profiles test-fcopy test-fnetfilter test-fs test-utils test-sysutils test-environment test-apps test-apps-x11 test-apps-x11-xorg test-filters 277
278# extract some data about the testing setup: kernel, network connectivity, pwd
279lab-setup:; uname -r; pwd; whoami; cat /etc/resolv.conf; cat /etc/hosts; ping -c 3 yahoo.com; dig yahoo.com; host yahoo.com; nslookup yahoo.com;
280
281
282test: lab-setup test-profiles test-fcopy test-fnetfilter test-fs test-utils test-sysutils test-environment test-apps test-apps-x11 test-apps-x11-xorg test-filters
278 echo "TEST COMPLETE" 283 echo "TEST COMPLETE"
279 284
280test-noprofiles: test-fcopy test-fnetfilter test-fs test-utils test-sysutils test-environment test-apps test-apps-x11 test-apps-x11-xorg test-filters 285test-noprofiles: lab-setup test-fcopy test-fnetfilter test-fs test-utils test-sysutils test-environment test-apps test-apps-x11 test-apps-x11-xorg test-filters
281 echo "TEST COMPLETE" 286 echo "TEST COMPLETE"
282 287
283test-github: test-profiles test-fcopy test-fnetfilter test-fs test-utils test-sysutils test-environment 288
289test-github: lab-setup test-profiles test-fcopy test-fnetfilter test-fs test-utils test-sysutils test-environment
284 echo "TEST COMPLETE" 290 echo "TEST COMPLETE"
285 291
286########################################## 292##########################################