diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2023-09-22 19:39:43 +0200 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2023-09-22 19:39:43 +0200 |
commit | d08803755b598ae96076c5ecac8154aa8198c14e (patch) | |
tree | f4faa5fc4134fcd0586df25794008fbb4ed14e1a /source/tests | |
parent | a7026d8c72e604fe6f868cc8e7cd665ac8b8be44 (diff) | |
download | kit-d08803755b598ae96076c5ecac8154aa8198c14e.zip |
test
Diffstat (limited to 'source/tests')
-rw-r--r-- | source/tests/test_signals.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/tests/test_signals.cpp b/source/tests/test_signals.cpp index cb8e61d..ab20c3e 100644 --- a/source/tests/test_signals.cpp +++ b/source/tests/test_signals.cpp @@ -9,7 +9,7 @@ TEST("c++ std::exception") { } // Can't handle multiple terminate signals on Windows -#ifndef _WIN32 +#if !defined(_WIN32) && !defined(__MINGW32__) TEST("abort") { abort(); } |