]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
tests: add isosize(1) check
authorSami Kerola <kerolasa@iki.fi>
Sat, 19 Jan 2013 00:09:07 +0000 (00:09 +0000)
committerKarel Zak <kzak@redhat.com>
Fri, 25 Jan 2013 09:22:32 +0000 (10:22 +0100)
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Signed-off-by: Karel Zak <kzak@redhat.com>
tests/commands.sh
tests/expected/isosize/print-size [new file with mode: 0644]
tests/ts/isosize/print-size [new file with mode: 0755]
tests/ts/isosize/sample.iso.gz [new file with mode: 0644]

index 366695b8d61b5d33f0c74fef9a17dff09323f6e7..de0c2dfbd05710bc3ccaa48bdc0c7ad719f93422 100644 (file)
@@ -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 (file)
index 0000000..3def437
--- /dev/null
@@ -0,0 +1 @@
+515899392
diff --git a/tests/ts/isosize/print-size b/tests/ts/isosize/print-size
new file mode 100755 (executable)
index 0000000..cd260a0
--- /dev/null
@@ -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 (file)
index 0000000..17937a2
Binary files /dev/null and b/tests/ts/isosize/sample.iso.gz differ