aboutsummaryrefslogtreecommitdiffstats
path: root/test/fs
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/fs
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/fs')
-rwxr-xr-xtest/fs/fs.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/test/fs/fs.sh b/test/fs/fs.sh
index e06aacee0..0ec714ffa 100755
--- a/test/fs/fs.sh
+++ b/test/fs/fs.sh
@@ -42,8 +42,12 @@ echo "TESTING: read/write /var/tmp (test/fs/fs_var_tmp.exp)"
42./fs_var_tmp.exp 42./fs_var_tmp.exp
43rm -f /var/tmp/_firejail_test_file 43rm -f /var/tmp/_firejail_test_file
44 44
45echo "TESTING: private-lib (test/fs/private-lib.exp)" 45if [ "$(uname -m)" = "x86_64" ]; then
46./private-lib.exp 46 echo "TESTING: private-lib (test/fs/private-lib.exp)"
47 ./private-lib.exp
48else
49 echo "TESTING SKIP: private-lib test implemented only for x86_64."
50fi
47 51
48echo "TESTING: read/write /var/lock (test/fs/fs_var_lock.exp)" 52echo "TESTING: read/write /var/lock (test/fs/fs_var_lock.exp)"
49./fs_var_lock.exp 53./fs_var_lock.exp