summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/testlib/selftests/tst_selftests.cpp17
1 files changed, 10 insertions, 7 deletions
diff --git a/tests/auto/testlib/selftests/tst_selftests.cpp b/tests/auto/testlib/selftests/tst_selftests.cpp
index bbdc5ee9e9..9a56ce8c1b 100644
--- a/tests/auto/testlib/selftests/tst_selftests.cpp
+++ b/tests/auto/testlib/selftests/tst_selftests.cpp
@@ -305,13 +305,6 @@ void tst_Selftests::runSubTest_data()
#endif
<< "benchlibeventcounter"
<< "benchliboptions"
-#if 0
- // These tests are affected by timing and whether the CPU tick counter
- // is monotonically increasing. They won't work on some machines so
- // leave them off by default. Feel free to uncomment for your own testing.
- << "benchlibtickcounter"
- << "benchlibwalltime"
-#endif
<< "cmptest"
<< "commandlinedata"
<< "crashes"
@@ -344,6 +337,16 @@ void tst_Selftests::runSubTest_data()
<< "xunit"
;
+ // These tests are affected by timing and whether the CPU tick counter
+ // is monotonically increasing. They won't work on some machines so
+ // leave them off by default. Feel free to enable them for your own
+ // testing by setting the QTEST_ENABLE_EXTRA_SELFTESTS environment
+ // variable to something non-empty.
+ if (!qgetenv("QTEST_ENABLE_EXTRA_SELFTESTS").isEmpty())
+ tests << "benchlibtickcounter"
+ << "benchlibwalltime"
+ ;
+
foreach (LoggerSet const& loggerSet, allLoggerSets()) {
QStringList loggers = loggerSet.loggers;