projects
/
fairystockfish.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
15272e7
)
Fix signature verification script
author
Fabian Fichter
<ianfab@users.noreply.github.com>
Wed, 25 Jul 2018 14:20:41 +0000 (16:20 +0200)
committer
GitHub
<noreply@github.com>
Wed, 25 Jul 2018 14:20:41 +0000 (16:20 +0200)
tests/signature.sh
patch
|
blob
|
history
diff --git
a/tests/signature.sh
b/tests/signature.sh
index
6f5957a
..
2e5c183
100755
(executable)
--- a/
tests/signature.sh
+++ b/
tests/signature.sh
@@
-16,7
+16,7
@@
signature=`./stockfish bench 2>&1 | grep "Nodes searched : " | awk '{print $4}'
if [ $# -gt 0 ]; then
# compare to given reference
if [ "$1" != "$signature" ]; then
- if [ "x$1" == "x" ]; then
+ if [ -z "$signature" ]; then
echo "No signature obtained from bench. Code crashed or assert triggered ?"
else
echo "signature mismatch: reference $1 obtained: $signature ."