mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-06 10:53:50 +08:00
Improve signature script
Catch case of missing bench, indicative of a crash or assert. No functional change
This commit is contained in:
committed by
Stéphane Nicolet
parent
cb4bda0f49
commit
155d5417d9
@@ -16,7 +16,11 @@ signature=`./stockfish bench 2>&1 | grep "Nodes searched : " | awk '{print $4}'
|
||||
if [ $# -gt 0 ]; then
|
||||
# compare to given reference
|
||||
if [ "$1" != "$signature" ]; then
|
||||
echo "signature mismatch: reference $1 obtained $signature"
|
||||
if [ "x$1" == "x" ]; then
|
||||
echo "No signature obtained from bench. Code crashed or assert triggered ?"
|
||||
else
|
||||
echo "signature mismatch: reference $1 obtained: $signature ."
|
||||
fi
|
||||
exit 1
|
||||
else
|
||||
echo "signature OK: $signature"
|
||||
|
||||
Reference in New Issue
Block a user