mirror of
https://github.com/monero-project/monero.git
synced 2025-08-06 17:34:20 -04:00
tests: add performance tests for rct signatures
This commit is contained in:
parent
80c5de9fa0
commit
1eaa3e8040
6 changed files with 65 additions and 32 deletions
|
@ -33,7 +33,7 @@
|
|||
|
||||
// tests
|
||||
#include "construct_tx.h"
|
||||
#include "check_ring_signature.h"
|
||||
#include "check_tx_signature.h"
|
||||
#include "cn_slow_hash.h"
|
||||
#include "derive_public_key.h"
|
||||
#include "derive_secret_key.h"
|
||||
|
@ -50,31 +50,47 @@ int main(int argc, char** argv)
|
|||
performance_timer timer;
|
||||
timer.start();
|
||||
|
||||
TEST_PERFORMANCE2(test_construct_tx, 1, 1);
|
||||
TEST_PERFORMANCE2(test_construct_tx, 1, 2);
|
||||
TEST_PERFORMANCE2(test_construct_tx, 1, 10);
|
||||
TEST_PERFORMANCE2(test_construct_tx, 1, 100);
|
||||
TEST_PERFORMANCE2(test_construct_tx, 1, 1000);
|
||||
TEST_PERFORMANCE3(test_construct_tx, 1, 1, false);
|
||||
TEST_PERFORMANCE3(test_construct_tx, 1, 2, false);
|
||||
TEST_PERFORMANCE3(test_construct_tx, 1, 10, false);
|
||||
TEST_PERFORMANCE3(test_construct_tx, 1, 100, false);
|
||||
TEST_PERFORMANCE3(test_construct_tx, 1, 1000, false);
|
||||
|
||||
TEST_PERFORMANCE2(test_construct_tx, 2, 1);
|
||||
TEST_PERFORMANCE2(test_construct_tx, 2, 2);
|
||||
TEST_PERFORMANCE2(test_construct_tx, 2, 10);
|
||||
TEST_PERFORMANCE2(test_construct_tx, 2, 100);
|
||||
TEST_PERFORMANCE3(test_construct_tx, 2, 1, false);
|
||||
TEST_PERFORMANCE3(test_construct_tx, 2, 2, false);
|
||||
TEST_PERFORMANCE3(test_construct_tx, 2, 10, false);
|
||||
TEST_PERFORMANCE3(test_construct_tx, 2, 100, false);
|
||||
|
||||
TEST_PERFORMANCE2(test_construct_tx, 10, 1);
|
||||
TEST_PERFORMANCE2(test_construct_tx, 10, 2);
|
||||
TEST_PERFORMANCE2(test_construct_tx, 10, 10);
|
||||
TEST_PERFORMANCE2(test_construct_tx, 10, 100);
|
||||
TEST_PERFORMANCE3(test_construct_tx, 10, 1, false);
|
||||
TEST_PERFORMANCE3(test_construct_tx, 10, 2, false);
|
||||
TEST_PERFORMANCE3(test_construct_tx, 10, 10, false);
|
||||
TEST_PERFORMANCE3(test_construct_tx, 10, 100, false);
|
||||
|
||||
TEST_PERFORMANCE2(test_construct_tx, 100, 1);
|
||||
TEST_PERFORMANCE2(test_construct_tx, 100, 2);
|
||||
TEST_PERFORMANCE2(test_construct_tx, 100, 10);
|
||||
TEST_PERFORMANCE2(test_construct_tx, 100, 100);
|
||||
TEST_PERFORMANCE3(test_construct_tx, 100, 1, false);
|
||||
TEST_PERFORMANCE3(test_construct_tx, 100, 2, false);
|
||||
TEST_PERFORMANCE3(test_construct_tx, 100, 10, false);
|
||||
TEST_PERFORMANCE3(test_construct_tx, 100, 100, false);
|
||||
|
||||
TEST_PERFORMANCE1(test_check_ring_signature, 1);
|
||||
TEST_PERFORMANCE1(test_check_ring_signature, 2);
|
||||
TEST_PERFORMANCE1(test_check_ring_signature, 10);
|
||||
TEST_PERFORMANCE1(test_check_ring_signature, 100);
|
||||
TEST_PERFORMANCE3(test_construct_tx, 2, 1, true);
|
||||
TEST_PERFORMANCE3(test_construct_tx, 2, 2, true);
|
||||
TEST_PERFORMANCE3(test_construct_tx, 2, 10, true);
|
||||
|
||||
TEST_PERFORMANCE3(test_construct_tx, 10, 1, true);
|
||||
TEST_PERFORMANCE3(test_construct_tx, 10, 2, true);
|
||||
TEST_PERFORMANCE3(test_construct_tx, 10, 10, true);
|
||||
|
||||
TEST_PERFORMANCE3(test_construct_tx, 100, 1, true);
|
||||
TEST_PERFORMANCE3(test_construct_tx, 100, 2, true);
|
||||
TEST_PERFORMANCE3(test_construct_tx, 100, 10, true);
|
||||
|
||||
TEST_PERFORMANCE2(test_check_tx_signature, 1, false);
|
||||
TEST_PERFORMANCE2(test_check_tx_signature, 2, false);
|
||||
TEST_PERFORMANCE2(test_check_tx_signature, 10, false);
|
||||
TEST_PERFORMANCE2(test_check_tx_signature, 100, false);
|
||||
|
||||
TEST_PERFORMANCE2(test_check_tx_signature, 2, true);
|
||||
TEST_PERFORMANCE2(test_check_tx_signature, 10, true);
|
||||
TEST_PERFORMANCE2(test_check_tx_signature, 100, true);
|
||||
|
||||
TEST_PERFORMANCE0(test_is_out_to_acc);
|
||||
TEST_PERFORMANCE0(test_generate_key_image_helper);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue