2019-11-28 05:16:14 +13:00
|
|
|
Zint backend test suite
|
|
|
|
-----------------------
|
|
|
|
|
2021-06-10 22:15:39 +12:00
|
|
|
In order to build the zint test suite, zint has to be compiled with the
|
2021-03-23 02:56:57 +13:00
|
|
|
ZINT_TEST option enabled:
|
2019-12-19 13:37:55 +13:00
|
|
|
|
|
|
|
cd <project-dir>
|
|
|
|
mkdir build
|
|
|
|
cd build
|
2021-03-17 12:38:47 +13:00
|
|
|
cmake -DZINT_TEST=ON ..
|
2021-11-24 01:10:58 +13:00
|
|
|
cmake --build .
|
2019-12-19 13:37:55 +13:00
|
|
|
|
2021-11-24 01:10:58 +13:00
|
|
|
When using generators that support multiple build configurations, such as
|
|
|
|
Visual C++ Project Files (the default generator on win32), the configuration
|
|
|
|
can be provided via --config:
|
|
|
|
|
|
|
|
cd <project-dir>
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake -DZINT_TEST=ON ..
|
|
|
|
cmake --build . --config Debug
|
|
|
|
|
2021-03-23 02:56:57 +13:00
|
|
|
------------------------------------------------------------------------------
|
|
|
|
|
2021-06-10 22:15:39 +12:00
|
|
|
In order to run the test suite, the path of the zint library may need to be
|
|
|
|
communicated to the runtime linker. On UNIX-like systems, this is done by
|
|
|
|
exporting LD_LIBRARY_PATH to the path containing the zint library, which is
|
|
|
|
<build-dir>/backend:
|
2019-11-28 05:16:14 +13:00
|
|
|
|
|
|
|
cd <project-dir>
|
|
|
|
cd build
|
2021-03-23 02:56:57 +13:00
|
|
|
export LD_LIBRARY_PATH=$(pwd)/backend
|
2021-06-10 22:15:39 +12:00
|
|
|
|
2021-03-23 02:56:57 +13:00
|
|
|
Setting LD_LIBRARY_PATH is not required if the zint library to be tested is
|
|
|
|
installed into a system library path ( /usr/lib for example ) prior to running
|
|
|
|
the tests.
|
2021-06-10 22:15:39 +12:00
|
|
|
|
|
|
|
To run all tests (within <build-dir>):
|
2020-05-06 09:28:25 +12:00
|
|
|
|
|
|
|
ctest
|
2019-11-28 05:16:14 +13:00
|
|
|
|
2021-11-24 01:10:58 +13:00
|
|
|
When using a generator that does support multiple build configurations, the
|
|
|
|
configuration that was used to build the project has to be explicitly provided
|
|
|
|
to ctest, even if it was the default one:
|
|
|
|
|
|
|
|
ctest -C Debug
|
|
|
|
|
2021-06-10 22:15:39 +12:00
|
|
|
For various useful options, e.g. matching (-R) and excluding (-E) tests, see
|
|
|
|
https://cmake.org/cmake/help/latest/manual/ctest.1.html#options
|
|
|
|
|
|
|
|
Tests can also be run individually, eg:
|
2019-11-28 05:16:14 +13:00
|
|
|
|
2021-06-10 22:15:39 +12:00
|
|
|
backend/tests/test_common
|
|
|
|
backend/tests/test_vector
|
2019-11-28 05:16:14 +13:00
|
|
|
|
2020-05-06 09:28:25 +12:00
|
|
|
To run a single test function within an individual test, use '-f <func-name>':
|
|
|
|
|
2021-06-10 22:15:39 +12:00
|
|
|
backend/tests/test_common -f utf8_to_unicode
|
|
|
|
backend/tests/test_dotcode -f input
|
2020-05-06 09:28:25 +12:00
|
|
|
|
|
|
|
To run a single dataset item in a single test function, use '-i <index>':
|
|
|
|
|
2021-06-10 22:15:39 +12:00
|
|
|
backend/tests/test_dotcode -f input -i 2
|
2020-05-06 09:28:25 +12:00
|
|
|
|
|
|
|
To show debug info (if any), use '-d <flag>':
|
|
|
|
|
2021-06-10 22:15:39 +12:00
|
|
|
backend/tests/test_dotcode -f input -i 2 -d 1
|
2020-05-06 09:28:25 +12:00
|
|
|
|
2020-07-16 06:00:12 +12:00
|
|
|
(for other flags see <project-dir>/backend/tests/testcommon.h)
|
|
|
|
|
2020-05-06 09:28:25 +12:00
|
|
|
To generate test data, use '-g':
|
|
|
|
|
2021-06-10 22:15:39 +12:00
|
|
|
backend/tests/test_dotcode -f encode -g
|
2020-05-06 09:28:25 +12:00
|
|
|
|
2020-07-16 06:00:12 +12:00
|
|
|
To run a test against BWIPP (if any), use '-d 128':
|
|
|
|
|
2021-06-10 22:15:39 +12:00
|
|
|
backend/tests/test_composite -d 128
|
2020-07-16 06:00:12 +12:00
|
|
|
|
|
|
|
(see also <project-dir>/backend/tests/tools/run_bwipp_tests.sh)
|
|
|
|
|
2020-05-06 09:28:25 +12:00
|
|
|
------------------------------------------------------------------------------
|
|
|
|
|
2021-03-23 02:56:57 +13:00
|
|
|
If the zint library was built with static linkage support, i.e. ZINT_STATIC
|
|
|
|
is ON, an additional test executable, which uses the zint-static library, will
|
|
|
|
be built. The static variant of each test shares the test name, but has a
|
2021-06-10 22:15:39 +12:00
|
|
|
"-static" suffix. For example,
|
2021-03-23 02:56:57 +13:00
|
|
|
|
2021-06-10 22:15:39 +12:00
|
|
|
backend/tests/test_dotcode
|
2021-03-23 02:56:57 +13:00
|
|
|
|
|
|
|
would run the dotcode test that uses the shared zint library, while
|
|
|
|
|
2021-06-10 22:15:39 +12:00
|
|
|
backend/tests/test_dotcode-static
|
2021-03-23 02:56:57 +13:00
|
|
|
|
|
|
|
runs the same test built against the zint-static library.
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
|
2019-11-28 05:16:14 +13:00
|
|
|
To make with gcc sanitize, first set for libzint and make:
|
|
|
|
|
|
|
|
cd <project-dir>
|
|
|
|
cd build
|
2021-03-17 12:38:47 +13:00
|
|
|
cmake -DZINT_SANITIZE=ON ..
|
2019-11-28 05:16:14 +13:00
|
|
|
make && sudo make install
|
|
|
|
|
|
|
|
Similarly to make with gcc debug:
|
|
|
|
|
|
|
|
cd <project-dir>
|
|
|
|
cd build
|
2021-03-17 12:38:47 +13:00
|
|
|
cmake -DZINT_DEBUG=ON ..
|
2019-11-28 05:16:14 +13:00
|
|
|
make && sudo make install
|
|
|
|
|
|
|
|
To undo sanitize/debug, remake each after setting:
|
|
|
|
|
2021-03-17 12:38:47 +13:00
|
|
|
cmake -DZINT_SANITIZE=OFF ..
|
|
|
|
cmake -DZINT_DEBUG=OFF ..
|
2019-11-28 05:16:14 +13:00
|
|
|
|
2019-12-19 13:37:55 +13:00
|
|
|
To get a clean libzint, set the above and also:
|
|
|
|
|
2021-03-17 12:38:47 +13:00
|
|
|
cmake -DZINT_TEST=OFF ..
|
2019-12-19 13:37:55 +13:00
|
|
|
|
|
|
|
(The tests will now fail to link.)
|
2021-03-23 02:56:57 +13:00
|
|
|
|