2013-06-14 00:41:19 +02:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
make &> /dev/null
|
|
|
|
|
|
|
|
for i in `ls tests/*.c`; do
|
2016-03-30 10:22:49 +02:00
|
|
|
testname=$(basename "$i" .c)
|
2017-05-25 14:58:41 +02:00
|
|
|
gcc -o tests/$testname -pthread $i liblockdep.a -Iinclude -D__USE_LIBLOCKDEP &> /dev/null
|
2013-06-14 00:41:19 +02:00
|
|
|
echo -ne "$testname... "
|
|
|
|
if [ $(timeout 1 ./tests/$testname | wc -l) -gt 0 ]; then
|
|
|
|
echo "PASSED!"
|
|
|
|
else
|
|
|
|
echo "FAILED!"
|
|
|
|
fi
|
2016-03-30 10:22:49 +02:00
|
|
|
if [ -f "tests/$testname" ]; then
|
|
|
|
rm tests/$testname
|
|
|
|
fi
|
2013-06-14 00:41:19 +02:00
|
|
|
done
|
|
|
|
|
|
|
|
for i in `ls tests/*.c`; do
|
2016-03-30 10:22:49 +02:00
|
|
|
testname=$(basename "$i" .c)
|
2017-05-25 14:58:41 +02:00
|
|
|
gcc -o tests/$testname -pthread -Iinclude $i &> /dev/null
|
2013-06-14 00:41:19 +02:00
|
|
|
echo -ne "(PRELOAD) $testname... "
|
|
|
|
if [ $(timeout 1 ./lockdep ./tests/$testname | wc -l) -gt 0 ]; then
|
|
|
|
echo "PASSED!"
|
|
|
|
else
|
|
|
|
echo "FAILED!"
|
|
|
|
fi
|
2016-03-30 10:22:49 +02:00
|
|
|
if [ -f "tests/$testname" ]; then
|
|
|
|
rm tests/$testname
|
|
|
|
fi
|
2013-06-14 00:41:19 +02:00
|
|
|
done
|