tests: add partitions probing test

Signed-off-by: Karel Zak <kzak@redhat.com>
This commit is contained in:
Karel Zak 2009-09-11 13:15:18 +02:00
parent 5e30325b79
commit 5777ba99a3
13 changed files with 74 additions and 4 deletions

View File

@ -11,6 +11,9 @@ TS_HELPER_MD5="$TS_TOPDIR/helpers/test_md5"
TS_HELPER_ISMOUNTED="$TOPDIR/lib/test_ismounted"
# TODO: use partx
TS_HELPER_PARTITIONS="$TOPDIR/shlibs/blkid/samples/partitions"
# external commands
TS_ECMD_BLKID="@BLKID@"
TS_ECMD_VOLID="@VOLID@"

View File

@ -0,0 +1,4 @@
size: 4456448, sector size: 512, PT: bsd, offset: 512
---
#1: 7936 4864 0x7
#2: 12544 3584 0x7

View File

@ -0,0 +1,6 @@
size: 8388608, sector size: 512, PT: dos, offset: 446
---
#1: 32 7648 0x83
#2: 7680 8704 0xa5
#5: 7936 4864 0x7 (freebsd)
#6: 12544 3584 0x7 (freebsd)

View File

@ -0,0 +1,7 @@
size: 10485760, sector size: 512, PT: gpt, offset: 512
---
#1: 34 2013 0x0 name='ThisIsName' uuid='bc10cf1d-7e63-524c-8203-087ae10a820b'
#2: 2048 2047 0x0 name='ThisIsOtherName' uuid='963ad0a1-3872-c646-bbb3-789cbe173ec7'
#3: 4096 2047 0x0 name='primary' uuid='6c1b10a7-8c46-df47-aff6-cd444d12af61'
#4: 6144 2047 0x0 name='primary' uuid='0a95c4af-f1f0-dd4a-802c-5957133486d1'
#5: 8192 2047 0x0 name='primary' uuid='87a7b00d-6bc1-8648-af3a-fbb97299677c'

View File

@ -0,0 +1,4 @@
size: 10485760, sector size: 512, PT: sgi, offset: 0
---
#1: 63 1606437 0x83
#2: 1606500 30523500 0x83

View File

@ -0,0 +1,4 @@
size: 10485760, sector size: 512, PT: sun, offset: 0
---
#1: 0 87380 0x83
#2: 87380 43690 0x82

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -17,7 +17,7 @@
#
TS_TOPDIR="$(dirname $0)/../.."
TS_DESC="low-level probing"
TS_DESC="low-level superblocks probing"
. $TS_TOPDIR/functions.sh
@ -27,9 +27,6 @@ if [ ! -x "$TS_CMD_BLKID" ]; then
ts_skip "blkid disabled"
fi
#
# Superblocks
#
mkdir -p $TS_OUTDIR/images-fs
for img in $(ls $TS_SELF/images-fs/*.img.bz2 | sort); do

45
tests/ts/blkid/lowprobe-pt Executable file
View File

@ -0,0 +1,45 @@
#!/bin/bash
#
# Copyright (C) 2009 Karel Zak <kzak@redhat.com>
#
# This file is part of util-linux-ng.
#
# This file is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This file is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
TS_TOPDIR="$(dirname $0)/../.."
TS_DESC="partitions probing"
. $TS_TOPDIR/functions.sh
ts_init "$*"
if [ ! -x "$TS_HELPER_PARTITIONS" ]; then
ts_skip "blkid disabled"
fi
mkdir -p $TS_OUTDIR/images-pt
for img in $(ls $TS_SELF/images-pt/*.img.bz2 | sort); do
name=$(basename $img .img.bz2)
outimg=$TS_OUTDIR/images-pt/${name}.img
ts_init_subtest $name
bunzip2 < $img > $outimg
$TS_HELPER_PARTITIONS $outimg &> $TS_OUTPUT
ts_finalize_subtest
done
ts_finalize