summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/plugin/quuid/testProcessUniqueness/main.cpp
blob: 07109afabf8b41f79407488008daef4a2669ade0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include <stdio.h>
#include <QUuid>

// This is a testcase for QTBUG-11213
int main(int argc, char **argv)
{
    Q_UNUSED(argc);
    Q_UNUSED(argv);

    // Now print a few uuids.
    printf("%s", qPrintable(QUuid::createUuid().toString()));
    printf("%s", qPrintable(QUuid::createUuid().toString()));
    printf("%s", qPrintable(QUuid::createUuid().toString()));

    // Done
    return 0;
}