aboutsummaryrefslogtreecommitdiffstats
path: root/tests/fuzzy-test/commandlineparser.h
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@theqtcompany.com>2015-05-06 14:28:06 +0200
committerChristian Kandeler <christian.kandeler@theqtcompany.com>2015-05-06 14:45:57 +0000
commit5ed204212297ae8847b66036eb85ab6c497dfa5e (patch)
treeb7d13f0b2fd511cf6b1d9f8b16709f648341baf9 /tests/fuzzy-test/commandlineparser.h
parent299ec44fc77b2e6ca699c5b2f145e0b597a6dfd2 (diff)
fuzzy tester: Add option to log debugging information.
If a problem is not reproducible, the recorded debugging output can help to find out how we got into the problematic state. Change-Id: Ib067069dcb47038c1236649ddcca060c5c59a90e Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
Diffstat (limited to 'tests/fuzzy-test/commandlineparser.h')
-rw-r--r--tests/fuzzy-test/commandlineparser.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/fuzzy-test/commandlineparser.h b/tests/fuzzy-test/commandlineparser.h
index 8682e9ef4..963ae78e1 100644
--- a/tests/fuzzy-test/commandlineparser.h
+++ b/tests/fuzzy-test/commandlineparser.h
@@ -57,6 +57,7 @@ public:
QString startCommit() const { return m_startCommit; }
int maxDurationInMinutes() const { return m_maxDuration; }
int jobCount() const { return m_jobCount; }
+ bool log() const { return m_log; }
QString usageString() const;
@@ -71,6 +72,7 @@ private:
QString m_startCommit;
int m_maxDuration;
int m_jobCount;
+ bool m_log;
};
#endif // Include guard.