summaryrefslogtreecommitdiffstats
path: root/tests/ts/script
diff options
context:
space:
mode:
authorSami Kerola2015-05-24 18:48:05 +0200
committerSami Kerola2015-06-06 15:35:19 +0200
commitd9f50441e15f2ec7fe93f0493a788cbd6f7e86b2 (patch)
tree0009bacbb0034e4c89cdf273da2cf4e481921494 /tests/ts/script
parentlibsmartcols: keep JSON field names lower-case (diff)
downloadkernel-qcow2-util-linux-d9f50441e15f2ec7fe93f0493a788cbd6f7e86b2.tar.gz
kernel-qcow2-util-linux-d9f50441e15f2ec7fe93f0493a788cbd6f7e86b2.tar.xz
kernel-qcow2-util-linux-d9f50441e15f2ec7fe93f0493a788cbd6f7e86b2.zip
tests: add script output buffering race check
Regression check to a fix by Stanislav Brabec. Reference: 0b285b84b2f14339fd86857244654ba25fac7d73 CC: Stanislav Brabec <sbrabec@suse.cz> Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Diffstat (limited to 'tests/ts/script')
-rwxr-xr-xtests/ts/script/buffering-race26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/ts/script/buffering-race b/tests/ts/script/buffering-race
new file mode 100755
index 000000000..0e4b2b977
--- /dev/null
+++ b/tests/ts/script/buffering-race
@@ -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
+