Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1494526

[PATCH] selftests/futex: Check ANSI terminal color support

From SeongJae Park <sj38.park@gmail.com>
Newsgroups linux.kernel
Subject [PATCH] selftests/futex: Check ANSI terminal color support
Date 2016-10-02 04:10 +0200
Message-ID <snEo1-li-1@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


Because test for color support of the running shell does not aware ANSI
type terminals, it does not print colorful messages on some environemnt.
This commit modifies the test to aware ANSI type terminal, too.

Signed-off-by: SeongJae Park <sj38.park@gmail.com>
---
 tools/testing/selftests/futex/functional/run.sh | 2 +-
 tools/testing/selftests/futex/run.sh            | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/testing/selftests/futex/functional/run.sh b/tools/testing/selftests/futex/functional/run.sh
index e87dbe2a0b0d..7ff002eed624 100755
--- a/tools/testing/selftests/futex/functional/run.sh
+++ b/tools/testing/selftests/futex/functional/run.sh
@@ -24,7 +24,7 @@
 
 # Test for a color capable console
 if [ -z "$USE_COLOR" ]; then
-    tput setf 7
+    tput setf 7 || tput setaf 7
     if [ $? -eq 0 ]; then
         USE_COLOR=1
         tput sgr0
diff --git a/tools/testing/selftests/futex/run.sh b/tools/testing/selftests/futex/run.sh
index 4126312ad64e..88bcb1767362 100755
--- a/tools/testing/selftests/futex/run.sh
+++ b/tools/testing/selftests/futex/run.sh
@@ -23,7 +23,7 @@
 
 # Test for a color capable shell and pass the result to the subdir scripts
 USE_COLOR=0
-tput setf 7
+tput setf 7 || tput setaf 7
 if [ $? -eq 0 ]; then
     USE_COLOR=1
     tput sgr0
-- 
2.10.0

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH] selftests/futex: Check ANSI terminal color support SeongJae Park <sj38.park@gmail.com> - 2016-10-02 04:10 +0200
  Re: [PATCH] selftests/futex: Check ANSI terminal color support Darren Hart <dvhart@infradead.org> - 2016-10-04 00:10 +0200
  Re: [PATCH] selftests/futex: Check ANSI terminal color support SeongJae Park <sj38.park@gmail.com> - 2016-10-11 01:20 +0200
    Re: [PATCH] selftests/futex: Check ANSI terminal color support Shuah Khan <shuah@kernel.org> - 2016-10-11 15:50 +0200

csiph-web