diff mbox series

[2/2] runltp: Print deprecated warnings to STDERR

Message ID 20240903124644.757127-2-pvorel@suse.cz
State Accepted
Headers show
Series [1/2] tools/genhtml.pl: Add deprecated warning | expand

Commit Message

Petr Vorel Sept. 3, 2024, 12:46 p.m. UTC
Probably more change people will notice

Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
 runltp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

Comments

Avinesh Kumar Sept. 3, 2024, 1 p.m. UTC | #1
Hi Petr,

Reviewed-by: Avinesh Kumar <akumar@suse.de>
for both.


Thank you,
Avinesh
diff mbox series

Patch

diff --git a/runltp b/runltp
index 4b0bd08f15..0d90625691 100755
--- a/runltp
+++ b/runltp
@@ -70,10 +70,10 @@ 
 
 deprecated()
 {
-    echo "-------------------------------------------"
-    echo "INFO: runltp script is deprecated, try kirk"
-    echo "https://github.com/linux-test-project/kirk"
-    echo "-------------------------------------------"
+    echo "-------------------------------------------" >&2
+    echo "INFO: runltp script is deprecated, try kirk" >&2
+    echo "https://github.com/linux-test-project/kirk" >&2
+    echo "-------------------------------------------" >&2
 }