kicad/thirdparty/argparse/test
Alex Shvartzkop 991b4299d6 Update argparse.
Otherwise .choices doesn't work properly.
See https://github.com/p-ranav/argparse/issues/307
2024-03-03 21:21:41 +03:00
..
.gitignore
CMakeLists.txt argparse update 2023-12-17 21:29:05 -05:00
README.md
argparse_details.cppm argparse update 2023-12-17 21:29:05 -05:00
doctest.hpp argparse update 2023-12-17 21:29:05 -05:00
main.cpp
test_actions.cpp argparse update 2023-12-17 21:29:05 -05:00
test_append.cpp argparse update 2023-12-17 21:29:05 -05:00
test_as_container.cpp argparse update 2023-12-17 21:29:05 -05:00
test_bool_operator.cpp argparse update 2023-12-17 21:29:05 -05:00
test_choices.cpp Update argparse. 2024-03-03 21:21:41 +03:00
test_compound_arguments.cpp argparse update 2023-12-17 21:29:05 -05:00
test_container_arguments.cpp argparse update 2023-12-17 21:29:05 -05:00
test_default_args.cpp argparse update 2023-12-17 21:29:05 -05:00
test_default_value.cpp argparse update 2023-12-17 21:29:05 -05:00
test_equals_form.cpp argparse update 2023-12-17 21:29:05 -05:00
test_error_reporting.cpp argparse update 2023-12-17 21:29:05 -05:00
test_get.cpp argparse update 2023-12-17 21:29:05 -05:00
test_help.cpp argparse update 2023-12-17 21:29:05 -05:00
test_invalid_arguments.cpp argparse update 2023-12-17 21:29:05 -05:00
test_is_used.cpp argparse update 2023-12-17 21:29:05 -05:00
test_issue_37.cpp argparse update 2023-12-17 21:29:05 -05:00
test_mutually_exclusive_group.cpp argparse update 2023-12-17 21:29:05 -05:00
test_negative_numbers.cpp argparse update 2023-12-17 21:29:05 -05:00
test_optional_arguments.cpp argparse update 2023-12-17 21:29:05 -05:00
test_parent_parsers.cpp argparse update 2023-12-17 21:29:05 -05:00
test_parse_args.cpp argparse update 2023-12-17 21:29:05 -05:00
test_parse_known_args.cpp argparse update 2023-12-17 21:29:05 -05:00
test_positional_arguments.cpp argparse update 2023-12-17 21:29:05 -05:00
test_prefix_chars.cpp argparse update 2023-12-17 21:29:05 -05:00
test_repr.cpp argparse update 2023-12-17 21:29:05 -05:00
test_required_arguments.cpp argparse update 2023-12-17 21:29:05 -05:00
test_scan.cpp argparse update 2023-12-17 21:29:05 -05:00
test_stringstream.cpp argparse update 2023-12-17 21:29:05 -05:00
test_subparsers.cpp argparse update 2023-12-17 21:29:05 -05:00
test_utility.hpp argparse update 2023-12-17 21:29:05 -05:00
test_version.cpp argparse update 2023-12-17 21:29:05 -05:00

README.md

Argparse Tests

Linux

$ mkdir build
$ cd build
$ cmake ../.
$ make
$ ./tests

Windows

  1. Generate Visual Studio solution
$ mkdir build
$ cd build
$ cmake ../. -G "Visual Studio 15 2017"
  1. Open ARGPARSE.sln
  2. Build tests in RELEASE | x64
  3. Run tests.exe