summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/kit/kit_test.h2
-rw-r--r--source/tests/test_signals.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/kit/kit_test.h b/source/kit/kit_test.h
index 8daa50e..0f07b32 100644
--- a/source/kit/kit_test.h
+++ b/source/kit/kit_test.h
@@ -304,7 +304,7 @@ int kit_run_benchmarks(int argc, char **argv);
# ifndef WIN32_LEAN_AND_MEAN
# define WIN32_LEAN_AND_MEAN 1
# endif
-# include <Windows.h>
+# include <windows.h>
# define KIT_TIMESPEC_IMPL_UNIX_EPOCH_IN_TICKS \
116444736000000000ull
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();
}