2 # check for errors under valgrind or sanitizers.
6 echo "instrumented testing failed on line $1"
9 trap 'error ${LINENO}' ERR
11 # define suitable post and prefixes for testing options
14 echo "valgrind testing started"
16 exeprefix='valgrind --error-exitcode=42'
21 echo "valgrind-thread testing started"
23 exeprefix='valgrind --error-exitcode=42'
27 --sanitizer-undefined)
28 echo "sanitizer-undefined testing started"
31 postfix='2>&1 | grep "runtime error:"'
35 echo "sanitizer-thread testing started"
38 postfix='2>&1 | grep "WARNING: ThreadSanitizer:"'
41 cat << EOF > tsan.supp
49 race:TranspositionTable::probe
50 race:TranspositionTable::hashfull
54 export TSAN_OPTIONS="suppressions=./tsan.supp"
58 echo "unknown testing started"
66 # simple command line testing
71 "go wtime 8000 btime 8000 winc 500 binc 500" \
72 "bench 128 $threads 10 default depth"
75 echo "$prefix $exeprefix ./stockfish $args $postfix"
76 eval "$prefix $exeprefix ./stockfish $args $postfix"
80 # more general testing, following an uci protocol exchange
83 spawn $exeprefix ./stockfish
88 send "setoption name Threads value $threads\n"
91 send "position startpos\n"
92 send "go nodes 1000\n"
95 send "position startpos moves e2e4 e7e6\n"
96 send "go nodes 1000\n"
99 send "position fen 5rk1/1K4p1/8/8/3B4/8/8/8 b - - 0 1\n"
106 # return error code of the spawned program, useful for valgrind
107 lassign [wait] pid spawnid os_error_flag value
111 #download TB as needed
112 if [ ! -d ../tests/syzygy ]; then
113 curl -sL https://api.github.com/repos/niklasf/python-chess/tarball/9b9aa13f9f36d08aadfabff872882f4ab1494e95 | tar -xzf -
114 mv niklasf-python-chess-9b9aa13 ../tests/syzygy
117 cat << EOF > syzygy.exp
119 spawn $exeprefix ./stockfish
121 send "setoption name SyzygyPath value ../tests/syzygy/\n"
122 expect "info string Found 35 tablebases" {} timeout {exit 1}
123 send "bench 128 1 10 default depth\n"
127 # return error code of the spawned program, useful for valgrind
128 lassign [wait] pid spawnid os_error_flag value
132 for exp in game.exp syzygy.exp
135 echo "$prefix expect $exp $postfix"
136 eval "$prefix expect $exp $postfix"
144 echo "instrumented testing OK"