aboutsummaryrefslogtreecommitdiffstats
path: root/test/filters/filters.sh
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@protonmail.com>2022-01-31 09:43:22 -0500
committerLibravatar netblue30 <netblue30@protonmail.com>2022-01-31 09:43:22 -0500
commitf9d50521f736fb9e8de2312fd778700c8ad551c0 (patch)
tree1963e6bdb36cd831a7ab57242d02680f433c64d0 /test/filters/filters.sh
parentMerge pull request #4881 from kmk3/relnotes-add-bugfixes (diff)
downloadfirejail-f9d50521f736fb9e8de2312fd778700c8ad551c0.tar.gz
firejail-f9d50521f736fb9e8de2312fd778700c8ad551c0.tar.zst
firejail-f9d50521f736fb9e8de2312fd778700c8ad551c0.zip
small fixes
Diffstat (limited to 'test/filters/filters.sh')
-rwxr-xr-xtest/filters/filters.sh16
1 files changed, 12 insertions, 4 deletions
diff --git a/test/filters/filters.sh b/test/filters/filters.sh
index 885c5a000..04d7080d6 100755
--- a/test/filters/filters.sh
+++ b/test/filters/filters.sh
@@ -33,8 +33,12 @@ fi
33echo "TESTING: debug options (test/filters/debug.exp)" 33echo "TESTING: debug options (test/filters/debug.exp)"
34./debug.exp 34./debug.exp
35 35
36echo "TESTING: seccomp run files (test/filters/seccomp-run-files.exp)" 36if [ "$(uname -m)" = "x86_64" ]; then
37./seccomp-run-files.exp 37 echo "TESTING: seccomp run files (test/filters/seccomp-run-files.exp)"
38 ./seccomp-run-files.exp
39else
40 echo "TESTING SKIP: seccomp-run-files test implemented only for x86_64."
41fi
38 42
39echo "TESTING: seccomp postexec (test/filters/seccomp-postexec.exp)" 43echo "TESTING: seccomp postexec (test/filters/seccomp-postexec.exp)"
40./seccomp-postexec.exp 44./seccomp-postexec.exp
@@ -111,8 +115,12 @@ echo "TESTING: seccomp chmod profile - seccomp lists (test/filters/seccomp-chmod
111echo "TESTING: seccomp empty (test/filters/seccomp-empty.exp)" 115echo "TESTING: seccomp empty (test/filters/seccomp-empty.exp)"
112./seccomp-empty.exp 116./seccomp-empty.exp
113 117
114echo "TESTING: seccomp numeric (test/filters/seccomp-numeric.exp)" 118if [ "$(uname -m)" = "x86_64" ]; then
115./seccomp-numeric.exp 119 echo "TESTING: seccomp numeric (test/filters/seccomp-numeric.exp)"
120 ./seccomp-numeric.exp
121else
122 echo "TESTING SKIP: seccomp numeric test implemented only for x86_64"
123fi
116 124
117if [ "$(uname -m)" = "x86_64" ]; then 125if [ "$(uname -m)" = "x86_64" ]; then
118 echo "TESTING: seccomp join (test/filters/seccomp-join.exp)" 126 echo "TESTING: seccomp join (test/filters/seccomp-join.exp)"