aboutsummaryrefslogtreecommitdiffstats
path: root/test/filters/filters.sh
diff options
context:
space:
mode:
authorLibravatar smitsohu <smitsohu@gmail.com>2022-12-24 03:06:46 +0100
committerLibravatar smitsohu <smitsohu@gmail.com>2022-12-24 03:08:31 +0100
commit5116c1ceddf1966c852cbe2d81a2b2672dc3ba90 (patch)
treee906d805ab72e9de41328cfdd7089ee4c17c66a6 /test/filters/filters.sh
parentchroot: make search permission check explicit (diff)
downloadfirejail-5116c1ceddf1966c852cbe2d81a2b2672dc3ba90.tar.gz
firejail-5116c1ceddf1966c852cbe2d81a2b2672dc3ba90.tar.zst
firejail-5116c1ceddf1966c852cbe2d81a2b2672dc3ba90.zip
testing
Diffstat (limited to 'test/filters/filters.sh')
-rwxr-xr-xtest/filters/filters.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/filters/filters.sh b/test/filters/filters.sh
index 3b4a6b492..c313b80ed 100755
--- a/test/filters/filters.sh
+++ b/test/filters/filters.sh
@@ -30,6 +30,16 @@ else
30 echo "TESTING SKIP: memwrexe binary only running on x86_64 and i686." 30 echo "TESTING SKIP: memwrexe binary only running on x86_64 and i686."
31fi 31fi
32 32
33if [[ $(uname -m) == "x86_64" ]]; then
34 echo "TESTING: restrict-namespaces (test/filters/namespaces.exp)"
35 ./namespaces.exp
36elif [[ $(uname -m) == "i686" ]]; then
37 echo "TESTING: restrict-namespaces (test/filters/namespaces-32.exp)"
38 ./namespaces-32.exp
39else
40 echo "TESTING SKIP: namespaces binary only running on x86_64 and i686."
41fi
42
33echo "TESTING: debug options (test/filters/debug.exp)" 43echo "TESTING: debug options (test/filters/debug.exp)"
34./debug.exp 44./debug.exp
35 45