aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2015-11-13 14:19:00 -0500
committerJack Lloyd <[email protected]>2015-11-13 14:19:00 -0500
commit17a9739602a14663adc0186093517a3874f6f098 (patch)
treee1085863e50fd135c2914b12e64a24774af54ac1 /src/tests
parentcf8365192fe871fecac7acff5236b7d4d97d1dba (diff)
Include the version string in the test output
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/test_main.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tests/test_main.cpp b/src/tests/test_main.cpp
index 4bbeabbfc..009073ae1 100644
--- a/src/tests/test_main.cpp
+++ b/src/tests/test_main.cpp
@@ -13,6 +13,7 @@
#include <thread>
#include <future>
+#include <botan/version.h>
#include <botan/auto_rng.h>
#include <botan/loadstor.h>
@@ -143,6 +144,7 @@ size_t run_tests(const std::vector<std::string>& tests_to_run,
std::unique_ptr<Botan::RandomNumberGenerator>
setup_tests(std::ostream& out, size_t threads, size_t soak_level, bool log_success, std::string drbg_seed)
{
+ out << "Testing " << Botan::version_string() << "\n";
out << "Starting tests";
if(threads > 1)