diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-05-28 12:54:11 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-09-11 13:37:46 +0000 |
commit | d126a02b5de6989d045f92cedf0408e251648f87 (patch) | |
tree | 7b37a519bb67dd33a1c88d2a838aa8b3979d288e /tests/performance_tests/main.cpp | |
parent | Pippenger multiexp (diff) | |
download | monero-d126a02b5de6989d045f92cedf0408e251648f87.tar.xz |
performance_tests: add aggregated bulletproof tx verification
Diffstat (limited to '')
-rw-r--r-- | tests/performance_tests/main.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/performance_tests/main.cpp b/tests/performance_tests/main.cpp index c3e1bb4e0..abcc2a3d0 100644 --- a/tests/performance_tests/main.cpp +++ b/tests/performance_tests/main.cpp @@ -141,6 +141,16 @@ int main(int argc, char** argv) TEST_PERFORMANCE4(filter, verbose, test_check_tx_signature, 100, 2, true, true); TEST_PERFORMANCE4(filter, verbose, test_check_tx_signature, 2, 10, true, true); + TEST_PERFORMANCE3(filter, verbose, test_check_tx_signature_aggregated_bulletproofs, 2, 2, 64); + TEST_PERFORMANCE3(filter, verbose, test_check_tx_signature_aggregated_bulletproofs, 10, 2, 64); + TEST_PERFORMANCE3(filter, verbose, test_check_tx_signature_aggregated_bulletproofs, 100, 2, 64); + TEST_PERFORMANCE3(filter, verbose, test_check_tx_signature_aggregated_bulletproofs, 2, 10, 64); + + TEST_PERFORMANCE4(filter, verbose, test_check_tx_signature_aggregated_bulletproofs, 2, 2, 62, 4); + TEST_PERFORMANCE4(filter, verbose, test_check_tx_signature_aggregated_bulletproofs, 10, 2, 62, 4); + TEST_PERFORMANCE4(filter, verbose, test_check_tx_signature_aggregated_bulletproofs, 2, 2, 56, 16); + TEST_PERFORMANCE4(filter, verbose, test_check_tx_signature_aggregated_bulletproofs, 10, 2, 56, 16); + TEST_PERFORMANCE0(filter, verbose, test_is_out_to_acc); TEST_PERFORMANCE0(filter, verbose, test_is_out_to_acc_precomp); TEST_PERFORMANCE0(filter, verbose, test_generate_key_image_helper); |