aboutsummaryrefslogtreecommitdiffstats
path: root/TestHelper.h
diff options
context:
space:
mode:
authorGav Wood <i@gavwood.com>2015-04-05 21:35:05 +0800
committerGav Wood <i@gavwood.com>2015-04-05 21:35:05 +0800
commit684aafdbd19814e40325edd2a51683578e867b1e (patch)
tree9fde94c5257c6fa01d8e29f1c2dba884195d5ef8 /TestHelper.h
parentc077a523dbadd3e4e3c9029ed6a9a38dc4fdb3c3 (diff)
parent985271d8fcbcc9db185094a45835022aa053fdf4 (diff)
downloaddexon-solidity-684aafdbd19814e40325edd2a51683578e867b1e.tar
dexon-solidity-684aafdbd19814e40325edd2a51683578e867b1e.tar.gz
dexon-solidity-684aafdbd19814e40325edd2a51683578e867b1e.tar.bz2
dexon-solidity-684aafdbd19814e40325edd2a51683578e867b1e.tar.lz
dexon-solidity-684aafdbd19814e40325edd2a51683578e867b1e.tar.xz
dexon-solidity-684aafdbd19814e40325edd2a51683578e867b1e.tar.zst
dexon-solidity-684aafdbd19814e40325edd2a51683578e867b1e.zip
Merge branch 'develop' of github.com:ethereum/cpp-ethereum into develop
Diffstat (limited to 'TestHelper.h')
-rw-r--r--TestHelper.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/TestHelper.h b/TestHelper.h
index 022c715f..e5f96f51 100644
--- a/TestHelper.h
+++ b/TestHelper.h
@@ -164,7 +164,7 @@ public:
bool vmtrace = false; ///< Create EVM execution tracer // TODO: Link with log verbosity?
bool fillTests = false; ///< Create JSON test files from execution results
bool stats = false; ///< Execution time stats
- bool statsFull = false; ///< Output full stats - execution times for every test
+ std::string statsOutFile; ///< Stats output file. "out" for standard output
/// Test selection
/// @{
@@ -191,10 +191,12 @@ class Listener
public:
virtual ~Listener() = default;
+ virtual void suiteStarted(std::string const&) {}
virtual void testStarted(std::string const& _name) = 0;
virtual void testFinished() = 0;
static void registerListener(Listener& _listener);
+ static void notifySuiteStarted(std::string const& _name);
static void notifyTestStarted(std::string const& _name);
static void notifyTestFinished();