diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2020-05-03 14:10:33 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2020-05-03 14:11:45 +0000 |
commit | db8563cb461056aaed6ce1fc28cafae7445f248a (patch) | |
tree | 5ad633ca45ae393afbe1c312716c590728a41df8 /tests/performance_tests/equality.h | |
parent | Merge pull request #6470 (diff) | |
download | monero-db8563cb461056aaed6ce1fc28cafae7445f248a.tar.xz |
performance_tests: some windows fixes
Too many iterations cause std::bad_alloc for the timings vector,
and the micro prefix displays as some other character, so use u.
Reported by iDunk
Diffstat (limited to 'tests/performance_tests/equality.h')
-rw-r--r-- | tests/performance_tests/equality.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/performance_tests/equality.h b/tests/performance_tests/equality.h index 5788ebec8..bd6c93a83 100644 --- a/tests/performance_tests/equality.h +++ b/tests/performance_tests/equality.h @@ -35,7 +35,7 @@ struct memcmp32 { - static const size_t loop_count = 1000000000; + static const size_t loop_count = 10000000; static int call(const unsigned char *k0, const unsigned char *k1){ return memcmp(k0, k1, 32); } }; |