You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When one uses EkatCreateUnitTest to create a unit test, EKAT uses a script called test-launcher to launch the test. However, EkatCreateUnitTest assumes that it can find test-launcher in the bin subdirectory of your build directory. This is only true if you're building EKAT with add_subdirectory. It will not work if you've installed EKAT somewhere already.
To Reproduce
Steps to reproduce the behavior:
Build EKAT and install it somewhere
Build your EKAT-dependent software, pointing it to the installed version of EKAT
Try to run unit tests created using EkatCreateUnitTest. They will all fail because test-launcher can't be found.
Expected behavior
It would be nice to have EKAT install test-launcher in the bin subdirectory of its CMAKE_INSTALL_PREFIX.