Blame SOURCES/0017-tests-kill-do-not-use-shell-build-in.patch

22a545
From 47b0f3480a88be94ef73973e73ad9f7fb8258cad Mon Sep 17 00:00:00 2001
22a545
From: Karel Zak <kzak@redhat.com>
22a545
Date: Mon, 4 Mar 2019 17:28:15 +0100
22a545
Subject: [PATCH 17/19] tests: (kill) do not use shell build-in
22a545
22a545
Addresses: https://bugzilla.redhat.com/show_bug.cgi?id=1681062
22a545
Upstream: http://github.com/karelzak/util-linux/commit/2fadcded53add5b5b0ca7071f310a0f37c711c51
22a545
Signed-off-by: Karel Zak <kzak@redhat.com>
22a545
---
22a545
 tests/ts/kill/all_processes  | 5 +++++
22a545
 tests/ts/kill/name_to_number | 5 +++++
22a545
 tests/ts/kill/options        | 5 +++++
22a545
 tests/ts/kill/print_pid      | 5 +++++
22a545
 tests/ts/kill/queue          | 5 +++++
22a545
 5 files changed, 25 insertions(+)
22a545
22a545
diff --git a/tests/ts/kill/all_processes b/tests/ts/kill/all_processes
22a545
index 2596ef02b..7a0c95931 100755
22a545
--- a/tests/ts/kill/all_processes
22a545
+++ b/tests/ts/kill/all_processes
22a545
@@ -20,6 +20,11 @@ ts_init "$*"
22a545
 
22a545
 ts_skip_nonroot
22a545
 
22a545
+# make sure we do not use shell built-in command
22a545
+if [ "$TS_USE_SYSTEM_COMMANDS" == "yes" ]; then
22a545
+	TS_CMD_KILL="/bin/kill"
22a545
+fi
22a545
+
22a545
 ts_check_test_command "$TS_CMD_KILL"
22a545
 ts_check_test_command "$TS_HELPER_SIGRECEIVE"
22a545
 
22a545
diff --git a/tests/ts/kill/name_to_number b/tests/ts/kill/name_to_number
22a545
index cde55c9ed..fd2aaafe0 100755
22a545
--- a/tests/ts/kill/name_to_number
22a545
+++ b/tests/ts/kill/name_to_number
22a545
@@ -18,6 +18,11 @@ TS_DESC="name_to_number"
22a545
 . "$TS_TOPDIR/functions.sh"
22a545
 ts_init "$*"
22a545
 
22a545
+# make sure we do not use shell built-in command
22a545
+if [ "$TS_USE_SYSTEM_COMMANDS" == "yes" ]; then
22a545
+	TS_CMD_KILL="/bin/kill"
22a545
+fi
22a545
+
22a545
 ts_check_test_command "$TS_CMD_KILL"
22a545
 ts_check_test_command "$TS_HELPER_SIGRECEIVE"
22a545
 
22a545
diff --git a/tests/ts/kill/options b/tests/ts/kill/options
22a545
index 2c82bbccc..ee9e52f47 100755
22a545
--- a/tests/ts/kill/options
22a545
+++ b/tests/ts/kill/options
22a545
@@ -18,6 +18,11 @@ TS_DESC="options"
22a545
 . "$TS_TOPDIR/functions.sh"
22a545
 ts_init "$*"
22a545
 
22a545
+# make sure we do not use shell built-in command
22a545
+if [ "$TS_USE_SYSTEM_COMMANDS" == "yes" ]; then
22a545
+	TS_CMD_KILL="/bin/kill"
22a545
+fi
22a545
+
22a545
 ts_check_test_command "$TS_CMD_KILL"
22a545
 ts_check_test_command "$TS_HELPER_SIGRECEIVE"
22a545
 
22a545
diff --git a/tests/ts/kill/print_pid b/tests/ts/kill/print_pid
22a545
index c6187f192..2a2a838ee 100755
22a545
--- a/tests/ts/kill/print_pid
22a545
+++ b/tests/ts/kill/print_pid
22a545
@@ -18,6 +18,11 @@ TS_DESC="print_pid"
22a545
 . "$TS_TOPDIR/functions.sh"
22a545
 ts_init "$*"
22a545
 
22a545
+# make sure we do not use shell built-in command
22a545
+if [ "$TS_USE_SYSTEM_COMMANDS" == "yes" ]; then
22a545
+	TS_CMD_KILL="/bin/kill"
22a545
+fi
22a545
+
22a545
 ts_check_test_command "$TS_CMD_KILL"
22a545
 ts_check_test_command "$TS_HELPER_SIGRECEIVE"
22a545
 
22a545
diff --git a/tests/ts/kill/queue b/tests/ts/kill/queue
22a545
index 992acf7a6..4727cbfc4 100755
22a545
--- a/tests/ts/kill/queue
22a545
+++ b/tests/ts/kill/queue
22a545
@@ -18,6 +18,11 @@ TS_DESC="queue"
22a545
 . "$TS_TOPDIR/functions.sh"
22a545
 ts_init "$*"
22a545
 
22a545
+# make sure we do not use shell built-in command
22a545
+if [ "$TS_USE_SYSTEM_COMMANDS" == "yes" ]; then
22a545
+	TS_CMD_KILL="/bin/kill"
22a545
+fi
22a545
+
22a545
 ts_check_test_command "$TS_CMD_KILL"
22a545
 ts_check_test_command "$TS_HELPER_SIGRECEIVE"
22a545
 
22a545
-- 
22a545
2.20.1
22a545