diff options
author | lloyd <[email protected]> | 2014-01-05 06:23:21 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2014-01-05 06:23:21 +0000 |
commit | c431fb65b883a0a5fa060ea7caace0aca3628ec6 (patch) | |
tree | 09898d2307801bffa7e1aeee9251d57ed4837870 /src/tests/test_aead.cpp | |
parent | 052345203b67eb5cacacd5659ec9837eeb59af35 (diff) |
Split up public key tests and data, use new test framework
Diffstat (limited to 'src/tests/test_aead.cpp')
-rw-r--r-- | src/tests/test_aead.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/tests/test_aead.cpp b/src/tests/test_aead.cpp index e8643334f..0bc4a47c5 100644 --- a/src/tests/test_aead.cpp +++ b/src/tests/test_aead.cpp @@ -29,12 +29,12 @@ secure_vector<byte> aead(const std::string& algo, return ct; } -bool aead_test(const std::string& algo, - const std::string& pt, - const std::string& ct, - const std::string& nonce_hex, - const std::string& ad_hex, - const std::string& key_hex) +size_t aead_test(const std::string& algo, + const std::string& pt, + const std::string& ct, + const std::string& nonce_hex, + const std::string& ad_hex, + const std::string& key_hex) { auto nonce = hex_decode_locked(nonce_hex); auto ad = hex_decode_locked(ad_hex); @@ -70,14 +70,14 @@ bool aead_test(const std::string& algo, ++fail; } - return (ct == ct2) && (pt == pt2); + return fail; } } size_t test_aead() { - std::ifstream vec(CHECKS_DIR "/aead.vec"); + std::ifstream vec(TEST_DATA_DIR "/aead.vec"); return run_tests_bb(vec, "AEAD", "Out", true, [](std::map<std::string, std::string> m) |