When building with CMake and running ctime_tests outside valgrind, users see:
0Usage: libtool --mode=execute valgrind ./ctime_tests
CMake users don’t have libtool. Show both commands.
Before
0$ ./build/bin/ctime_tests
1This test can only usefully be run inside valgrind because it was not compiled under msan.
2Usage: libtool --mode=execute valgrind ./ctime_tests
After
0$ ./build/bin/ctime_tests
1This test can only usefully be run inside valgrind because it was not compiled under msan.
2Usage: valgrind ./ctime_tests (or with Autotools: libtool --mode=execute valgrind ./ctime_tests)
Fixes #1697