mirror of
https://github.com/netblue30/firejail.git
synced 2026-07-18 23:37:39 -06:00
Some checks are pending
Build-extra / build-gcc (push) Waiting to run
Build-extra / build-clang (push) Waiting to run
Build / build (push) Waiting to run
Check-C / scan-build (push) Waiting to run
Check-C / cppcheck (push) Waiting to run
Check-C / codeql-cpp (push) Waiting to run
Codespell / codespell (push) Waiting to run
Test / test-main (push) Waiting to run
Test / test-fs (push) Waiting to run
Test / test-environment (push) Waiting to run
Test / test-utils (push) Waiting to run
Test / test-network (push) Waiting to run
28 lines
664 B
Makefile
28 lines
664 B
Makefile
.SUFFIXES:
|
|
ROOT = ..
|
|
-include $(ROOT)/config.mk
|
|
|
|
RM ?= rm -f
|
|
|
|
TESTS=$(patsubst %/,%,$(wildcard */))
|
|
|
|
.PHONY: $(TESTS)
|
|
$(TESTS):
|
|
cd $@ && ./$@.sh 2>&1 | tee $@.log
|
|
cd $@ && grep -a TESTING $@.log && ! grep -a -q "TESTING ERROR" $@.log
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
for test in $(TESTS); do $(RM) "$$test/$$test.log"; done
|
|
$(RM) -r environment/-testdir
|
|
$(RM) environment/index.html*
|
|
$(RM) environment/logfile*
|
|
$(RM) environment/wget-log*
|
|
$(RM) test/chroot/unchroot
|
|
$(RM) test/fcopy/src/dircopy.exp
|
|
$(RM) test/fnetfilter/outfile
|
|
$(RM) test/fnettrace/index.html
|
|
$(RM) utils/firejail-test-file*
|
|
$(RM) utils/index.html*
|
|
$(RM) utils/lstesting
|
|
$(RM) utils/wget-log
|