bindings: cxx: use catch2 to implement a proper test-suite
authorBartosz Golaszewski <bgolaszewski@baylibre.com>
Tue, 6 Aug 2019 16:05:30 +0000 (18:05 +0200)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Wed, 7 Aug 2019 09:28:34 +0000 (11:28 +0200)
commit99d38a56e5fb1d059adcf507751159b7a296cced
tree52dfeeb37a1a2ae506aa5984a09b14ab56de19f3
parentd001dde47cc0df44ad79aa19bfe5bafaf4ba31bd
bindings: cxx: use catch2 to implement a proper test-suite

Currently the only tests we have for C++ bindings are in a simple
program that makes a lot of assumptions about the environment and
doesn't even work anymore with recent kernels.

Remove it and replace it with a proper test-suite implemented using
libgpiomockup and Catch2.

Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
15 files changed:
.gitignore
Makefile.am
TODO
bindings/cxx/Makefile.am
bindings/cxx/examples/Makefile.am
bindings/cxx/examples/gpiod_cxx_tests.cpp [deleted file]
bindings/cxx/tests/Makefile.am [new file with mode: 0644]
bindings/cxx/tests/gpio-mockup.cpp [new file with mode: 0644]
bindings/cxx/tests/gpio-mockup.hpp [new file with mode: 0644]
bindings/cxx/tests/gpiod-cxx-test.cpp [new file with mode: 0644]
bindings/cxx/tests/tests-chip.cpp [new file with mode: 0644]
bindings/cxx/tests/tests-event.cpp [new file with mode: 0644]
bindings/cxx/tests/tests-iter.cpp [new file with mode: 0644]
bindings/cxx/tests/tests-line.cpp [new file with mode: 0644]
configure.ac