summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/plugin/quuid/testProcessUniqueness/main.cpp
blob: 93d120163196758bd198fce98aea16f266299d2c (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

#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;
}