diff options
author | Neozaru <neozaru@mailoo.org> | 2014-06-01 18:21:30 +0200 |
---|---|---|
committer | Neozaru <neozaru@mailoo.org> | 2014-06-01 18:21:30 +0200 |
commit | 8530629e22d88de4c2fd4d7d231b00c65d30100d (patch) | |
tree | 0890c9ee74331cd1f27093833718d3cf7eb20d26 /tests/performance_tests/main.cpp | |
parent | simplewallet returns 0 when no error (diff) | |
parent | Merge branch '0.8.8update' (diff) | |
download | monero-8530629e22d88de4c2fd4d7d231b00c65d30100d.tar.xz |
Merge bitmonero@monero-project
Diffstat (limited to 'tests/performance_tests/main.cpp')
-rw-r--r-- | tests/performance_tests/main.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/performance_tests/main.cpp b/tests/performance_tests/main.cpp index 2ad503b83..72ee2ca6c 100644 --- a/tests/performance_tests/main.cpp +++ b/tests/performance_tests/main.cpp @@ -8,6 +8,7 @@ // tests #include "construct_tx.h" #include "check_ring_signature.h" +#include "cn_slow_hash.h" #include "derive_public_key.h" #include "derive_secret_key.h" #include "generate_key_derivation.h" @@ -56,6 +57,8 @@ int main(int argc, char** argv) TEST_PERFORMANCE0(test_derive_public_key); TEST_PERFORMANCE0(test_derive_secret_key); + TEST_PERFORMANCE0(test_cn_slow_hash); + std::cout << "Tests finished. Elapsed time: " << timer.elapsed_ms() / 1000 << " sec" << std::endl; return 0; |