-e means we expect an accepting run.

* iface/dve2/dve2check.cc: Reverse the value of
expect_counter_example with respect to the -e/-E options.
* iface/dve2/dve2check.test: Swap -e and -E.
This commit is contained in:
Alexandre Duret-Lutz 2011-07-26 18:44:18 +02:00
parent 7aefc190c9
commit 1719287b1e
3 changed files with 13 additions and 5 deletions

View file

@ -107,7 +107,7 @@ main(int argc, char **argv)
if (!*echeck_algo)
echeck_algo = "Cou99";
expect_counter_example = (*opt == 'E');
expect_counter_example = (*opt == 'e');
output = EmptinessCheck;
break;
}