blt
blt copied to clipboard
Is there a make target to run just BLT "smoke" tests
Just curious if it is possible to test BLT (the one I've copied into my project) itself, apart from running my project's test? Is there a make target it defines for this purpose?
If you have ctest in your path, you can run:
ctest -R blt_
Test project /Users/harrison37/Work/github/llnl/conduit/build-debug
Start 1: blt_gtest_smoke
1/3 Test #1: blt_gtest_smoke .................. Passed 0.02 sec
Start 2: blt_fruit_smoke
2/3 Test #2: blt_fruit_smoke .................. Passed 0.02 sec
Start 3: blt_mpi_smoke
3/3 Test #3: blt_mpi_smoke .................... Passed 0.18 sec
100% tests passed, 0 tests failed out of 3
I think we could also add a specific target for these, that said there is also value to learning how to using ctest (to get verbose output, etc)