From: Sami Kerola Date: Sun, 24 May 2015 16:48:05 +0000 (+0100) Subject: tests: add script output buffering race check X-Git-Tag: v2.27-rc1~132^2~9^2~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d9f50441e15f2ec7fe93f0493a788cbd6f7e86b2;p=thirdparty%2Futil-linux.git tests: add script output buffering race check Regression check to a fix by Stanislav Brabec. Reference: 0b285b84b2f14339fd86857244654ba25fac7d73 CC: Stanislav Brabec Signed-off-by: Sami Kerola --- diff --git a/tests/expected/script/buffering-race b/tests/expected/script/buffering-race new file mode 100644 index 0000000000..d223252f1b --- /dev/null +++ b/tests/expected/script/buffering-race @@ -0,0 +1,3 @@ +Script started, file is /dev/null +Hallo World +Script done, file is /dev/null diff --git a/tests/ts/script/buffering-race b/tests/ts/script/buffering-race new file mode 100755 index 0000000000..0e4b2b9772 --- /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 $TS_OUTPUT + +ts_finalize +