a/tests/shared.sh b/tests/shared.sh
...
...
25
checkresult() {
25
checkresult() {
26
  if test -s "$mydiffs" ; then
26
  if test -s "$mydiffs" ; then
27
    fatal '*** ' $myname FAILED
27
    fatal '*** ' $myname FAILED
28
  else
28
  else
29
    rm -f $mydiffs
29
    rm -f $mydiffs
30
    # for tests with a local index
31
    rm -rf xapiandb aspdict.* missing recoll.conf
30
    exit 0
32
    exit 0
31
  fi
33
  fi
32
}
34
}
33
35
34