summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/commands.sh1
-rw-r--r--tests/expected/misc/setsid1
-rwxr-xr-xtests/ts/misc/setsid23
3 files changed, 25 insertions, 0 deletions
diff --git a/tests/commands.sh b/tests/commands.sh
index 906721e46..0fec88647 100644
--- a/tests/commands.sh
+++ b/tests/commands.sh
@@ -76,3 +76,4 @@ TS_CMD_IONICE=${TS_CMD_IONICE-"$top_builddir/ionice"}
TS_CMD_LINE=${TS_CMD_LINE-"$top_builddir/line"}
TS_CMD_DMESG=${TS_CMD_DMESG-"$top_builddir/dmesg"}
+TS_CMD_SETSID=${TS_CMD_SETSID-"$top_builddir/setsid"}
diff --git a/tests/expected/misc/setsid b/tests/expected/misc/setsid
new file mode 100644
index 000000000..2e9ba477f
--- /dev/null
+++ b/tests/expected/misc/setsid
@@ -0,0 +1 @@
+success
diff --git a/tests/ts/misc/setsid b/tests/ts/misc/setsid
new file mode 100755
index 000000000..43a76f9b5
--- /dev/null
+++ b/tests/ts/misc/setsid
@@ -0,0 +1,23 @@
+#!/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="setsid"
+
+. $TS_TOPDIR/functions.sh
+ts_init "$*"
+
+$TS_CMD_SETSID echo "success" > $TS_OUTPUT 2>&1
+
+ts_finalize