]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
tests: add ul(1) check
authorSami Kerola <kerolasa@iki.fi>
Sat, 19 Jan 2013 00:08:56 +0000 (00:08 +0000)
committerKarel Zak <kzak@redhat.com>
Thu, 24 Jan 2013 15:49:33 +0000 (16:49 +0100)
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
tests/commands.sh
tests/expected/misc/ul [new file with mode: 0644]
tests/ts/misc/ul [new file with mode: 0755]

index 27186405261526a49093857a403c7da0796c9117..fe79cf41923edd26f9458fca619227a5cfb25ecb 100644 (file)
@@ -69,3 +69,4 @@ TS_CMD_UTMPDUMP=${TS_CMD_UTMPDUMP-"$top_builddir/utmpdump"}
 TS_CMD_GETOPT=${TS_CMD_GETOPT-"$top_builddir/getopt"}
 TS_CMD_MCOOKIE=${TS_CMD_MCOOKIE-"$top_builddir/mcookie"}
 TS_CMD_TAILF=${TS_CMD_TAILF-"$top_builddir/tailf"}
+TS_CMD_UL=${TS_CMD_UL-"$top_builddir/ul"}
diff --git a/tests/expected/misc/ul b/tests/expected/misc/ul
new file mode 100644 (file)
index 0000000..f3aecd1
--- /dev/null
@@ -0,0 +1,3 @@
+\e[1ma\e(B\e[mb\e[4mc\e[24m
+        tab
+\f
\ No newline at end of file
diff --git a/tests/ts/misc/ul b/tests/ts/misc/ul
new file mode 100755 (executable)
index 0000000..bc0ecf7
--- /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="ul"
+
+. $TS_TOPDIR/functions.sh
+ts_init "$*"
+
+printf "a\x08ab\x5F\x08c\\n\\ttab\\f\\b\\r" |
+       $TS_CMD_UL -t xterm > $TS_OUTPUT 2>&1
+
+ts_finalize