Line data Source code
1 : // Copyright (c) 2015 The Bitcoin Core developers
2 : // Distributed under the MIT software license, see the accompanying
3 : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 :
5 : #include "bench.h"
6 :
7 : #include "key.h"
8 : #include "main.h"
9 : #include "util.h"
10 :
11 : int
12 0 : main(int argc, char** argv)
13 : {
14 0 : ECC_Start();
15 0 : SetupEnvironment();
16 0 : fPrintToDebugLog = false; // don't want to write to debug.log file
17 :
18 0 : benchmark::BenchRunner::RunAll();
19 :
20 0 : ECC_Stop();
21 0 : }
|