summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSami Kerola2013-01-19 01:09:07 +0100
committerKarel Zak2013-01-25 10:22:32 +0100
commitef316cb77e20fe62f3ea47c9c64f657e2e904e00 (patch)
treeb12426212138659a699014da8d06f078f2abf112
parentdocs: mkswap.8: recommend fallocate(1) (diff)
downloadkernel-qcow2-util-linux-ef316cb77e20fe62f3ea47c9c64f657e2e904e00.tar.gz
kernel-qcow2-util-linux-ef316cb77e20fe62f3ea47c9c64f657e2e904e00.tar.xz
kernel-qcow2-util-linux-ef316cb77e20fe62f3ea47c9c64f657e2e904e00.zip
tests: add isosize(1) check
Signed-off-by: Sami Kerola <kerolasa@iki.fi> Signed-off-by: Karel Zak <kzak@redhat.com>
-rw-r--r--tests/commands.sh1
-rw-r--r--tests/expected/isosize/print-size1
-rwxr-xr-xtests/ts/isosize/print-size24
-rw-r--r--tests/ts/isosize/sample.iso.gzbin0 -> 632 bytes
4 files changed, 26 insertions, 0 deletions
diff --git a/tests/commands.sh b/tests/commands.sh
index 366695b8d..de0c2dfbd 100644
--- a/tests/commands.sh
+++ b/tests/commands.sh
@@ -79,3 +79,4 @@ TS_CMD_DMESG=${TS_CMD_DMESG-"$top_builddir/dmesg"}
TS_CMD_SETSID=${TS_CMD_SETSID-"$top_builddir/setsid"}
TS_CMD_SETARCH=${TS_CMD_SETARCH-"$top_builddir/setarch"}
TS_CMD_FALLOCATE=${TS_CMD_FALLOCATE-"$top_builddir/fallocate"}
+TS_CMD_ISOSIZE=${TS_CMD_ISOSIZE-"$top_builddir/isosize"}
diff --git a/tests/expected/isosize/print-size b/tests/expected/isosize/print-size
new file mode 100644
index 000000000..3def437e9
--- /dev/null
+++ b/tests/expected/isosize/print-size
@@ -0,0 +1 @@
+515899392
diff --git a/tests/ts/isosize/print-size b/tests/ts/isosize/print-size
new file mode 100755
index 000000000..cd260a0c8
--- /dev/null
+++ b/tests/ts/isosize/print-size
@@ -0,0 +1,24 @@
+#!/bin/bash
+
+# This file is part of util-linux.
+#
+# 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="print-size"
+
+. $TS_TOPDIR/functions.sh
+ts_init "$*"
+
+gzip -cd $TS_SELF/sample.iso.gz > $TS_OUTDIR/sample.iso
+$TS_CMD_ISOSIZE $TS_OUTDIR/sample.iso >| $TS_OUTPUT 2>&1
+
+ts_finalize
diff --git a/tests/ts/isosize/sample.iso.gz b/tests/ts/isosize/sample.iso.gz
new file mode 100644
index 000000000..17937a260
--- /dev/null
+++ b/tests/ts/isosize/sample.iso.gz
Binary files differ