Upload Tizen:Base source
[framework/base/util-linux-ng.git] / tests / ts / blkid / low-probe
1 #!/bin/bash
2
3 #
4 # Copyright (C) 2009 Karel Zak <kzak@redhat.com>
5 #
6 # This file is part of util-linux-ng.
7 #
8 # This file is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
12 #
13 # This file is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18
19 TS_TOPDIR="$(dirname $0)/../.."
20 TS_DESC="low-probe"
21
22 . $TS_TOPDIR/functions.sh
23
24 ts_init "$*"
25
26 if [ ! -x "$TS_CMD_BLKID" ]; then
27         ts_skip "blkid disabled"
28 fi
29
30 mkdir -p $TS_OUTDIR/images
31
32 for img in $(ls $TS_SELF/images/*.img.bz2 | sort); do
33         name=$(basename $img .img.bz2)
34         outimg=$TS_OUTDIR/images/${name}.img
35
36         ts_init_subtest $name
37
38         bunzip2 < $img > $outimg
39
40         #/lib/udev/vol_id $outimg  | egrep -v '[[:alnum:]_]*=$' | sort > $TS_OUTPUT 2>&1
41         $TS_CMD_BLKID -p -o udev $outimg 2>&1 | sort > $TS_OUTPUT
42         ts_finalize_subtest
43 done
44
45 ts_finalize
46