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
This commit is contained in:
moneromooo-monero 2020-05-03 14:10:33 +00:00
parent 378cdeaeae
commit db8563cb46
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3
2 changed files with 2 additions and 2 deletions

View file

@ -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); }
};