summaryrefslogtreecommitdiffstats
path: root/tests/auto/testlib/selftests/silent/tst_silent.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/testlib/selftests/silent/tst_silent.cpp')
-rw-r--r--tests/auto/testlib/selftests/silent/tst_silent.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/tests/auto/testlib/selftests/silent/tst_silent.cpp b/tests/auto/testlib/selftests/silent/tst_silent.cpp
index 34b33e1391..87c610f269 100644
--- a/tests/auto/testlib/selftests/silent/tst_silent.cpp
+++ b/tests/auto/testlib/selftests/silent/tst_silent.cpp
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2016 The Qt Company Ltd.
+** Copyright (C) 2021 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the test suite of the Qt Toolkit.
@@ -102,14 +102,11 @@ void tst_Silent::messages()
qFatal("This is a fatal error message that should still appear in silent test output");
}
-int main(int argc, char *argv[])
-{
+QTEST_MAIN_WRAPPER(tst_Silent,
std::vector<const char*> args(argv, argv + argc);
args.push_back("-silent");
argc = int(args.size());
argv = const_cast<char**>(&args[0]);
-
- QTEST_MAIN_IMPL(tst_Silent)
-}
+ QTEST_MAIN_SETUP())
#include "tst_silent.moc"