[go: up one dir, main page]

File: statfs.t

package info (click to toggle)
fakechroot 2.19-3.3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,148 kB
  • sloc: ansic: 6,893; sh: 5,995; makefile: 349; perl: 169; java: 5
file content (22 lines) | stat: -rwxr-xr-x 446 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

srcdir=${srcdir:-.}
. $srcdir/common.inc.sh

prepare 2

for chroot in chroot fakechroot; do

    if [ $chroot = "chroot" ] && ! is_root; then
        skip $(( $tap_plan / 2 )) "not root"
    else

        mkdir $testtree/testdir-$chroot
        t=`$srcdir/$chroot.sh $testtree test-statfs /testdir-$chroot 2>&1`
        if echo "$t" | grep "[^0-9]" >/dev/null; then not; fi
        ok "$chroot statfs returns" $t

    fi
done

cleanup