]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
tests: add script output buffering race check
authorSami Kerola <kerolasa@iki.fi>
Sun, 24 May 2015 16:48:05 +0000 (17:48 +0100)
committerSami Kerola <kerolasa@iki.fi>
Sat, 6 Jun 2015 13:35:19 +0000 (14:35 +0100)
Regression check to a fix by Stanislav Brabec.

Reference: 0b285b84b2f14339fd86857244654ba25fac7d73
CC: Stanislav Brabec <sbrabec@suse.cz>
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
tests/expected/script/buffering-race [new file with mode: 0644]
tests/ts/script/buffering-race [new file with mode: 0755]

diff --git a/tests/expected/script/buffering-race b/tests/expected/script/buffering-race
new file mode 100644 (file)
index 0000000..d223252
--- /dev/null
@@ -0,0 +1,3 @@
+Script started, file is /dev/null
+Hallo World\r
+Script done, file is /dev/null
diff --git a/tests/ts/script/buffering-race b/tests/ts/script/buffering-race
new file mode 100755 (executable)
index 0000000..0e4b2b9
--- /dev/null
@@ -0,0 +1,26 @@
+#!/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="${0%/*}/../.."
+TS_DESC="buffering race"
+
+. $TS_TOPDIR/functions.sh
+ts_init "$*"
+
+ts_check_test_command "$TS_CMD_SCRIPT"
+
+$TS_CMD_SCRIPT -c "echo Hallo World" /dev/null </dev/null >$TS_OUTPUT
+
+ts_finalize
+