aboutsummaryrefslogtreecommitdiffstats
path: root/test/fs/fs.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/fs/fs.sh')
-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 55f5a8770..d3c17e7a5 100755
--- a/test/fs/fs.sh
+++ b/test/fs/fs.sh
@@ -37,8 +37,12 @@ echo "TESTING: private-lib (test/fs/private-lib.exp)"
37echo "TESTING: read/write /var/lock (test/fs/fs_var_lock.exp)" 37echo "TESTING: read/write /var/lock (test/fs/fs_var_lock.exp)"
38./fs_var_lock.exp 38./fs_var_lock.exp
39 39
40echo "TESTING: read/write /dev/shm (test/fs/fs_dev_shm.exp)" 40if [ -w /dev/shm ]; then
41./fs_dev_shm.exp 41 echo "TESTING: read/write /dev/shm (test/fs/fs_dev_shm.exp)"
42 ./fs_dev_shm.exp
43else
44 echo "TESTING SKIP: /dev/shm not writable"
45fi
42 46
43echo "TESTING: private (test/fs/private.exp)" 47echo "TESTING: private (test/fs/private.exp)"
44./private.exp 48./private.exp