Thiago Macieira b119fee87d De-duplicate the disabling of crash dialogs in our unit tests
The code was duplicated in multiple places.

Pick-to: 6.5 6.8 6.9
Change-Id: If2ab30b7afbf6d2f99c9fffd999218802b734d5e
Reviewed-by: Ahmad Samir <a.samirh78@gmail.com>
2025-01-19 19:24:28 -08:00

35 lines
766 B
C++

// Copyright (C) 2016 The Qt Company Ltd.
// Copyright (C) 2020 Intel Corporation.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#if defined(_MSC_VER)
# include <intrin.h>
#endif
#ifndef __has_builtin
# define __has_builtin(x) 0
#endif
namespace tst_QProcessCrash {
void crashFallback(volatile int *ptr = nullptr)
{
*ptr = 0;
}
void crash()
{
#if defined(_MSC_VER) && (defined(_M_IX86) || defined(_M_X64))
__ud2();
#elif defined(_MSC_VER) && defined(_M_ARM64)
__debugbreak();
#elif __has_builtin(__builtin_trap)
__builtin_trap();
#elif defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))
asm("ud2");
#elif defined(SIGILL)
raise(SIGILL);
#endif
crashFallback();
}
} // namespace tst_QProcessCrash