Fix filtering bug in ssl-opt.sh

If the first test to be run according to -e and -f options is just after a
test that would have been skipped due to a require_xxx instruction, then it
would be incorrectly skipped.
This commit is contained in:
Manuel Pégourié-Gonnard 2017-07-10 11:55:31 +02:00 committed by Simon Butcher
parent cfea3ebd01
commit 33e8d34e95

View File

@ -219,6 +219,7 @@ run_test() {
if echo "$NAME" | grep "$FILTER" | grep -v "$EXCLUDE" >/dev/null; then : if echo "$NAME" | grep "$FILTER" | grep -v "$EXCLUDE" >/dev/null; then :
else else
SKIP_NEXT="NO"
return return
fi fi