aboutsummaryrefslogtreecommitdiffstats
path: root/TestHelper.h
diff options
context:
space:
mode:
Diffstat (limited to 'TestHelper.h')
-rw-r--r--TestHelper.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/TestHelper.h b/TestHelper.h
index 5f2f8d6d..a5f50f80 100644
--- a/TestHelper.h
+++ b/TestHelper.h
@@ -218,6 +218,13 @@ void checkAddresses(mapType& _expectedAddrs, mapType& _resultAddrs)
TBOOST_CHECK((_expectedAddrs == _resultAddrs));
}*/
+enum class Verbosity
+{
+ Full,
+ NiceReport,
+ None
+};
+
class Options
{
public:
@@ -227,6 +234,7 @@ public:
std::string statsOutFile; ///< Stats output file. "out" for standard output
bool checkState = false;///< Throw error when checking test states
bool fulloutput = false;///< Replace large output to just it's length
+ Verbosity logVerbosity = Verbosity::NiceReport;
/// Test selection
/// @{