option_map: Diagnose unused option on request

* spot/misc/optionmap.hh, spot/misc/optionmap.cc (report_unused_options,
set_, set_set_): New methods.
* bin/autfilt.cc, bin/dstar2tgba.cc, bin/ltl2tgba.cc,
bin/ltl2tgta.cc: Call report_unused_options().
* tests/core/ltlcross2.test, tests/core/readsave.test: Fix typos in
options.
* tests/core/minusx.test: New file.
* tests/Makefile.am: Add it.
* NEWS: Mention this.
This commit is contained in:
Alexandre Duret-Lutz 2016-06-22 20:41:14 +02:00
parent f7f353db68
commit e419150c30
11 changed files with 133 additions and 30 deletions

View file

@ -193,6 +193,9 @@ main(int argc, char** argv)
dstar_processor processor(post);
if (processor.run())
return 2;
// Diagnose unused -x options
extra_options.report_unused_options();
}
catch (const std::runtime_error& e)
{