diff options
author | Morten Sorvig <msorvig@trolltech.com> | 2009-08-10 08:14:12 (GMT) |
---|---|---|
committer | Morten Sorvig <msorvig@trolltech.com> | 2009-08-10 08:20:15 (GMT) |
commit | 7aa2d76dfc4a107f38c5cb0aac00a0b31d0fbbb6 (patch) | |
tree | eeeef851de0e762822380f9c77645c489bab4567 /src/testlib/qbenchmark_p.h | |
parent | 2be387f3e94f84cf0167cdc3871de0d0af85c62d (diff) | |
download | Qt-7aa2d76dfc4a107f38c5cb0aac00a0b31d0fbbb6.zip Qt-7aa2d76dfc4a107f38c5cb0aac00a0b31d0fbbb6.tar.gz Qt-7aa2d76dfc4a107f38c5cb0aac00a0b31d0fbbb6.tar.bz2 |
Add QBENCMARK_ONCE to QTestLib.
The code block associated with QBENCHMARK_ONCE macro will only be executed once,
whether the backend returns a valid result or not. The "-iterations" command line
argument is also ignored.
This is useful for benchmarking code that has side effects.
Revby: jasplin
Diffstat (limited to 'src/testlib/qbenchmark_p.h')
-rw-r--r-- | src/testlib/qbenchmark_p.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/testlib/qbenchmark_p.h b/src/testlib/qbenchmark_p.h index 25f9cdc..185d656 100644 --- a/src/testlib/qbenchmark_p.h +++ b/src/testlib/qbenchmark_p.h @@ -171,6 +171,7 @@ public: QBenchmarkResult result; bool resultAccepted; + bool runOnce; int iterationCount; }; |