summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/io/qprocess/testProcessCrash/main.cpp
blob: a5f1eef88a98f0c07e4bf96c11bec7f3ead2ccea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2016 The Qt Company Ltd.
// Copyright (C) 2020 Intel Corporation.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#include "../crasher.h"
using namespace tst_QProcessCrash;

int main()
{
    [[maybe_unused]] // NoCoreDumps may be an empty struct, not a RAII class
    NoCoreDumps disableCoreDumps;
    crash();
    return 0;
}