aboutsummaryrefslogtreecommitdiffstats
path: root/src/selftest/selftest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/selftest/selftest.cpp')
-rw-r--r--src/selftest/selftest.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/selftest/selftest.cpp b/src/selftest/selftest.cpp
index 4d2837dac..7b87bcb61 100644
--- a/src/selftest/selftest.cpp
+++ b/src/selftest/selftest.cpp
@@ -10,6 +10,8 @@
#include <botan/internal/core_engine.h>
#include <botan/internal/stl_util.h>
+#include <stdio.h>
+
namespace Botan {
namespace {
@@ -24,7 +26,9 @@ bool test_filter_kat(Filter* filter,
Pipe pipe(new Hex_Decoder, filter, new Hex_Encoder);
pipe.process_msg(input);
- std::string output = pipe.read_all_as_string();
+ const std::string output = pipe.read_all_as_string();
+
+ //printf("%s %s\n", output.c_str(), expected_output.c_str());
return (output == expected_output);
}