aboutsummaryrefslogtreecommitdiffstats
path: root/checks/tests.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2013-12-31 21:38:18 +0000
committerlloyd <[email protected]>2013-12-31 21:38:18 +0000
commitc5dc7598403b5f7e739b2c27707663b16c4199f8 (patch)
tree632042be775d298f648247b824b97d493dca889d /checks/tests.h
parent7947d9787fe1cf448a418e2252edededdf887032 (diff)
Split up tests by type
Diffstat (limited to 'checks/tests.h')
-rw-r--r--checks/tests.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/checks/tests.h b/checks/tests.h
index e1f59c501..d0c81b62e 100644
--- a/checks/tests.h
+++ b/checks/tests.h
@@ -28,7 +28,18 @@ void test_report(const std::string& name, size_t ran, size_t failed);
#define TEST(expr, msg) do { if(!(expr)) { ++fails; std::cout << msg; } while(0)
+size_t run_all_tests();
+
// Tests using reader framework above
+size_t test_block();
+size_t test_stream();
+size_t test_hash();
+size_t test_mac();
+
+size_t test_modes();
+
+size_t test_rngs();
+
size_t test_hkdf();
size_t test_pbkdf();
size_t test_kdf();