diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-02-13 11:28:26 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-03-04 11:56:38 +0000 |
commit | b9a618848f846bd8ab2c55936cb536cce939ce56 (patch) | |
tree | f6b76b38932f0b209d07d94e52859f9da7849551 /tests/performance_tests/main.cpp | |
parent | CNv4 JIT compiler for x86-64 and tests (diff) | |
download | monero-b9a618848f846bd8ab2c55936cb536cce939ce56.tar.xz |
performance_tests: add tests for new Cryptonight variants
Diffstat (limited to '')
-rw-r--r-- | tests/performance_tests/main.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/performance_tests/main.cpp b/tests/performance_tests/main.cpp index bfe6de895..86450760c 100644 --- a/tests/performance_tests/main.cpp +++ b/tests/performance_tests/main.cpp @@ -193,7 +193,10 @@ int main(int argc, char** argv) TEST_PERFORMANCE2(filter, p, test_wallet2_expand_subaddresses, 50, 200); - TEST_PERFORMANCE0(filter, p, test_cn_slow_hash); + TEST_PERFORMANCE1(filter, p, test_cn_slow_hash, 0); + TEST_PERFORMANCE1(filter, p, test_cn_slow_hash, 1); + TEST_PERFORMANCE1(filter, p, test_cn_slow_hash, 2); + TEST_PERFORMANCE1(filter, p, test_cn_slow_hash, 4); TEST_PERFORMANCE1(filter, p, test_cn_fast_hash, 32); TEST_PERFORMANCE1(filter, p, test_cn_fast_hash, 16384); |