4ea4b3c257
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>
32 lines
718 B
Bash
Executable File
32 lines
718 B
Bash
Executable File
#! /bin/bash
|
|
|
|
make &> /dev/null
|
|
|
|
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 2>&1 | wc -l) -gt 0 ]; then
|
|
echo "PASSED!"
|
|
else
|
|
echo "FAILED!"
|
|
fi
|
|
if [ -f "tests/$testname" ]; then
|
|
rm tests/$testname
|
|
fi
|
|
done
|
|
|
|
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 2>&1 | wc -l) -gt 0 ]; then
|
|
echo "PASSED!"
|
|
else
|
|
echo "FAILED!"
|
|
fi
|
|
if [ -f "tests/$testname" ]; then
|
|
rm tests/$testname
|
|
fi
|
|
done
|