]> err.no Git - util-linux/commitdiff
tests: update fsck.ismounted test
authorKarel Zak <kzak@redhat.com>
Thu, 15 Oct 2009 21:37:34 +0000 (23:37 +0200)
committerKarel Zak <kzak@redhat.com>
Thu, 15 Oct 2009 21:37:34 +0000 (23:37 +0200)
The latest version of the lib/test_ismounted binary returns absolute
mountpoint path too. This patch removes the path from test output (the
path is variable).

Signed-off-by: Karel Zak <kzak@redhat.com>
tests/ts/fsck/ismounted

index 3279ddfd0e12b6e6c571c2a9f09376cc26049bc6..6f049f7a47dff3262511e249bbf287dfc550661d 100755 (executable)
@@ -37,7 +37,7 @@ ts_device_has "TYPE" "ext3" $DEVICE || ts_die "Cannot found ext3 on $DEVICE" $DE
 $TS_CMD_MOUNT $DEVICE $TS_MOUNTPOINT >> $TS_OUTPUT 2>&1
 
 # test by ismounted.c
-$TS_HELPER_ISMOUNTED $DEVICE >> $TS_OUTPUT 2>&1
+$TS_HELPER_ISMOUNTED $DEVICE | awk '{print $1}' >> $TS_OUTPUT 2>&1
 
 $TS_CMD_UMOUNT $DEVICE || ts_die "Cannot umount $DEVICE" $DEVICE