qt6-bb10/tests/auto/testlib/selftests/maxwarnings/maxwarnings.cpp

23 lines
395 B
C++

// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include <QtCore/QCoreApplication>
#include <QTest>
class MaxWarnings: public QObject
{
Q_OBJECT
private slots:
void warn();
};
void MaxWarnings::warn()
{
for (int i = 0; i < 10000; ++i)
qWarning("%d", i);
}
QTEST_MAIN(MaxWarnings)
#include "maxwarnings.moc"