mirror of
https://github.com/vtil-project/VTIL-Core
synced 2026-08-17 08:23:03 -04:00
13 lines
No EOL
397 B
C++
13 lines
No EOL
397 B
C++
#if defined(__linux__)
|
|
// on some glibc toolchains SIGSTKSZ is not a constant expression...
|
|
#define DOCTEST_CONFIG_NO_POSIX_SIGNALS
|
|
#endif
|
|
|
|
#if defined(__APPLE__) && (defined(__aarch64__) || defined(__arm64__))
|
|
#ifndef DOCTEST_BREAK_INTO_DEBUGGER
|
|
#define DOCTEST_BREAK_INTO_DEBUGGER() __builtin_debugtrap()
|
|
#endif
|
|
#endif
|
|
|
|
#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
|
|
#include "doctest.h" |