Merge tag 'keys-next-20160511' of git://git.kernel.org/pub/scm/linux/kernel/git/dhowe...
[deliverable/linux.git] / tools / lib / lockdep / run_tests.sh
CommitLineData
878f968e
SL
1#! /bin/bash
2
3make &> /dev/null
4
5for i in `ls tests/*.c`; do
a189c017 6 testname=$(basename "$i" .c)
878f968e
SL
7 gcc -o tests/$testname -pthread -lpthread $i liblockdep.a -Iinclude -D__USE_LIBLOCKDEP &> /dev/null
8 echo -ne "$testname... "
9 if [ $(timeout 1 ./tests/$testname | wc -l) -gt 0 ]; then
10 echo "PASSED!"
11 else
12 echo "FAILED!"
13 fi
a189c017
SD
14 if [ -f "tests/$testname" ]; then
15 rm tests/$testname
16 fi
878f968e
SL
17done
18
19for i in `ls tests/*.c`; do
a189c017 20 testname=$(basename "$i" .c)
878f968e
SL
21 gcc -o tests/$testname -pthread -lpthread -Iinclude $i &> /dev/null
22 echo -ne "(PRELOAD) $testname... "
23 if [ $(timeout 1 ./lockdep ./tests/$testname | wc -l) -gt 0 ]; then
24 echo "PASSED!"
25 else
26 echo "FAILED!"
27 fi
a189c017
SD
28 if [ -f "tests/$testname" ]; then
29 rm tests/$testname
30 fi
878f968e 31done
This page took 0.135585 seconds and 5 git commands to generate.