Home | History | Annotate | Download | only in tests

Lines Matching refs:mnt

23 testing "mount $root_fs /mnt" \
24 "mount $root_fs /mnt >/dev/null 2>&1 && mkdir /mnt/testDir &&
25 sleep 1 && umount /mnt && test -e /testDir && rmdir /testDir" "" "" ""
26 testing "mount $tmp_b_fs /mnt" \
27 "mount $tmp_b_fs /mnt >/dev/null 2>&1 && mkdir /mnt/testDir &&
28 sleep 1 && umount /mnt && ! test -e /mnt/testDir" "" "" ""
31 chmod 444 /mnt
32 testing "mount $root_fs /mnt (read_only dir)" \
33 "mount $root_fs /mnt >/dev/null 2>&1 && mkdir /mnt/testDir &&
34 sleep 1 && umount /mnt && test -e /testDir && rmdir /testDir" "" "" ""
35 testing "mount $tmp_b_fs /mnt (read_only dir)" \
36 "mount $tmp_b_fs /mnt >/dev/null 2>&1 && mkdir /mnt/testDir &&
37 sleep 1 && umount /mnt && ! test -e /mnt/testDir" "" "" ""
39 chmod 755 /mnt
40 testing "mount -w $root_fs /mnt (write_only mode)" \
41 "mount -w $root_fs /mnt >/dev/null 2>&1 && mkdir /mnt/testDir &&
42 sleep 1 && umount /mnt && test -e /testDir && rmdir /testDir" "" "" ""
43 testing "mount -w $tmp_b_fs /mnt (write_only mode)" \
44 "mount -w $tmp_b_fs /mnt >/dev/null 2>&1 && mkdir /mnt/testDir &&
45 sleep 1 && umount /mnt && ! test -e /mnt/testDir" "" "" ""
47 testing "mount -rw $tmp_b_fs /mnt (read_write mode)" \
48 'mount -rw $tmp_b_fs /mnt >/dev/null && mkdir /mnt/testDir && \
49 sleep 1 && ! test -e /mnt/testDir && umount /mnt' "" "" ""
51 testing "mount $tmp_b_fs /mnt -t fs_type" \
52 "mount $tmp_b_fs /mnt -t $tmp_b_fs_type >/dev/null 2>&1 &&
53 mkdir /mnt/testDir && sleep 1 && umount /mnt &&
54 ! test -e /mnt/testDir" "" "" ""
66 testing "mount -o loop $tmp_b_fs /mnt" \
67 "mount -o loop $tmp_b_fs /mnt >/dev/null 2>&1 && mkdir /mnt/testDirp &&
68 sleep 1 && umount -d /mnt && ! test -e /mnt/testDirp" "" "" ""
77 testing "mount -o rw $tmp_b_fs /mnt" \
78 "mount -o rw $tmp_b_fs /mnt >/dev/null 2>&1 && mkdir /mnt/testDir &&
79 sleep 1 && umount /mnt && ! test -e /mnt/testDir" "" "" ""
81 testing "mount -o ro $tmp_b_fs /mnt" \
82 "mount -o ro $tmp_b_fs /mnt >/dev/null 2>&1 &&
83 mkdir /mnt/testDir 2>/dev/null || sleep 1 && umount /mnt" "" "" ""