change inferno, sheila and chapter11 configs to follow same test partition conventions
[xfstests-dev.git] / 102
1 #! /bin/sh
2 # FS QA Test No. 102
3 #
4 # This tests mkfs_udf/mkudffs and the device detection code
5 # Modified from UDFQA test 031.
6 #
7 #-----------------------------------------------------------------------
8 #  Copyright (c) 2000-2004 Silicon Graphics, Inc.  All Rights Reserved.
9 #-----------------------------------------------------------------------
10 #
11 # creator
12 owner=ajones@sgi.com
13
14 seq=`basename $0`
15 echo "QA output created by $seq"
16
17 here=`pwd`
18 tmp=/tmp/$$
19 status=1        # failure is the default!
20 trap "_cleanup; exit \$status" 0 1 2 3 15
21
22 _cleanup()
23 {
24     rm -f $tmp.*
25     cd /
26     _cleanup_testdir
27 }
28 # get standard environment, filters and checks
29 . ./common.rc
30 . ./common.filter
31
32 # real QA test starts here
33 _supported_fs udf 
34 _supported_os Linux IRIX
35
36 _require_scratch
37 _setup_udf_scratchdir
38
39 # Checks the udf filesystem
40 _check_udf_filesystem $SCRATCH_DEV
41
42 echo "Finished"
43
44 # success, all done
45 status=0
46 exit