autfilt --acceptance-is=Fin-less should reject "f"

* bin/autfilt.cc: Fix detection of Fin-less acceptance.
* tests/core/remfin.test: Add some tests.
* NEWS: Mention the bug.
This commit is contained in:
Alexandre Duret-Lutz 2018-03-16 14:00:27 +01:00
parent 1db3472a99
commit 1c26764b13
3 changed files with 11 additions and 1 deletions

View file

@ -1191,7 +1191,7 @@ namespace
}
}
case ACC_FinLess:
return !acc.uses_fin_acceptance();
return !acc.uses_fin_acceptance() && !acc.is_f();
}
SPOT_UNREACHABLE();
}