mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-22 23:59:34 -05:00
ITS#6026 Don't run autosaved test scripts
This commit is contained in:
parent
f30269f5d2
commit
9e18cd21bd
1 changed files with 7 additions and 0 deletions
|
|
@ -26,6 +26,13 @@ SLEEPTIME=10
|
|||
echo ">>>>> Executing all LDAP tests for $BACKEND"
|
||||
|
||||
for CMD in $SRCDIR/scripts/test*; do
|
||||
case "$CMD" in
|
||||
*~) continue;;
|
||||
*.bak) continue;;
|
||||
*.sav) continue;;
|
||||
*) test -x "$CMD" || continue;;
|
||||
esac
|
||||
|
||||
# remove cruft from prior test
|
||||
if test $PRESERVE = yes ; then
|
||||
/bin/rm -rf $TESTDIR/db.*
|
||||
|
|
|
|||
Loading…
Reference in a new issue