Skip to content

Compile system test binaries during make

Nicki Křížek requested to merge 4249-compile-test-files-during-make into main

Using check_PROGRAMS would postpone compiling the binaries needed by system tests until make check would be called. Since it's preferable to invoke pytest directly to run the system test suite, compile these binaries without installing them during make all instead by using noinst_PROGRAMS.

This removes the need to use TESTS= make -e check hack invoked from pytest to work around this issue.

Closes #4249 (closed)

Related #3810

Edited by Nicki Křížek

Merge request reports