summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/io/qprocess/testProcessCrash/main.cpp
blob: fb3112ffaa148b722c2d7eed1b93719944dfd50a (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 WITH Qt-GPL-exception-1.0

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