summaryrefslogtreecommitdiffstats
path: root/tests/auto/testlib/selftests/benchlibcallgrind/tst_benchlibcallgrind.cpp
diff options
context:
space:
mode:
authorEdward Welbourne <edward.welbourne@qt.io>2021-09-28 15:12:48 +0200
committerEdward Welbourne <edward.welbourne@qt.io>2021-12-09 20:54:25 +0100
commit37bc11e707d3f29fa81675bcc41610ab65c2b314 (patch)
tree8706fcaec5e287425fb70d047febe7ebaceffc12 /tests/auto/testlib/selftests/benchlibcallgrind/tst_benchlibcallgrind.cpp
parentb67c367e0eb81a9062009abb6d5893e91719ca3e (diff)
Refactor QTEST*_MAIN() implementations
The various variants duplicated some rather complex code around varying setup in the middle. Rework in terms of a macro that defines main() and takes the setup code as a parameter. That setup code also had some common structure, so package that in a setup macro that takes the class to be used. Reworked various testlib selftests that were using QTEST_MAIN_IMPL(); change to use the new QTEST_MAIN_WRAPPER() and TEST_MAIN_SETUP(). These might be better dealt with by supporting a second form of the initMain() test-setup function in the test classes, that takes references for argc and argv, to let a test massage its command-line options. Change-Id: I7fb16b38d51c80ba2f5c9c82f3b7a37ffc636795 Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
Diffstat (limited to 'tests/auto/testlib/selftests/benchlibcallgrind/tst_benchlibcallgrind.cpp')
-rw-r--r--tests/auto/testlib/selftests/benchlibcallgrind/tst_benchlibcallgrind.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/tests/auto/testlib/selftests/benchlibcallgrind/tst_benchlibcallgrind.cpp b/tests/auto/testlib/selftests/benchlibcallgrind/tst_benchlibcallgrind.cpp
index 353a7f5018..b3cf623375 100644
--- a/tests/auto/testlib/selftests/benchlibcallgrind/tst_benchlibcallgrind.cpp
+++ b/tests/auto/testlib/selftests/benchlibcallgrind/tst_benchlibcallgrind.cpp
@@ -78,8 +78,7 @@ void tst_BenchlibCallgrind::twoHundredMillionInstructions()
#endif
}
-int main(int argc, char *argv[])
-{
+QTEST_MAIN_WRAPPER(tst_BenchlibCallgrind,
std::vector<const char*> args(argv, argv + argc);
// Add the -callgrind argument unless (it's there anyway or) we're the
// recursive invocation with -callgrindchild passed.
@@ -92,9 +91,7 @@ int main(int argc, char *argv[])
argc = args.size();
argv = const_cast<char**>(&args[0]);
}
-
- QTEST_MAIN_IMPL(tst_BenchlibCallgrind)
-}
+ QTEST_MAIN_SETUP())
#undef HAVE_VALGRIND_H
#include "tst_benchlibcallgrind.moc"