]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
tools/lib/lockdep: Hide liblockdep output from test results
authorLevin, Alexander (Sasha Levin) <alexander.levin@verizon.com>
Thu, 25 May 2017 12:58:58 +0000 (12:58 +0000)
committerIngo Molnar <mingo@kernel.org>
Mon, 5 Jun 2017 07:28:13 +0000 (09:28 +0200)
This would prevent the liblockdep error messages from getting
mixed in with the test result output.

Signed-off-by: Sasha Levin <alexander.levin@verizon.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: a.p.zijlstra@chello.nl
Cc: ben@decadent.org.uk
Link: http://lkml.kernel.org/r/20170525130005.5947-22-alexander.levin@verizon.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
tools/lib/lockdep/run_tests.sh

index 3fd297bd5fcb4962fc18bfafc895f961e9472274..f9b94098fc98e118c4d36e8096c3b2cd8dd72778 100755 (executable)
@@ -6,7 +6,7 @@ for i in `ls tests/*.c`; do
        testname=$(basename "$i" .c)
        gcc -o tests/$testname -pthread $i liblockdep.a -Iinclude -D__USE_LIBLOCKDEP &> /dev/null
        echo -ne "$testname... "
-       if [ $(timeout 1 ./tests/$testname | wc -l) -gt 0 ]; then
+       if [ $(timeout 1 ./tests/$testname 2>&1 | wc -l) -gt 0 ]; then
                echo "PASSED!"
        else
                echo "FAILED!"
@@ -20,7 +20,7 @@ for i in `ls tests/*.c`; do
        testname=$(basename "$i" .c)
        gcc -o tests/$testname -pthread -Iinclude $i &> /dev/null
        echo -ne "(PRELOAD) $testname... "
-       if [ $(timeout 1 ./lockdep ./tests/$testname | wc -l) -gt 0 ]; then
+       if [ $(timeout 1 ./lockdep ./tests/$testname 2>&1 | wc -l) -gt 0 ]; then
                echo "PASSED!"
        else
                echo "FAILED!"