From 942687d1cfa65b11cd5dbd9556a99e9be7b60c3b Mon Sep 17 00:00:00 2001 From: Mitya Selivanov Date: Wed, 6 Sep 2023 03:05:09 +0200 Subject: test --- source/tests/test_signals.cpp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'source/tests') diff --git a/source/tests/test_signals.cpp b/source/tests/test_signals.cpp index 0f6d77a..1b4acc7 100644 --- a/source/tests/test_signals.cpp +++ b/source/tests/test_signals.cpp @@ -3,10 +3,6 @@ #include #include -/* FIXME - * MSVC tests fail in GitHub Actions. - */ - TEST("c++ exception") { throw std::exception(); } @@ -20,7 +16,12 @@ TEST("invalid access") { } int main(int argc, char **argv) { -#ifndef _MSC_VER + // FIXME + // On Windows, doesn't work for some reason... + // Both MSVC and MinGW. + // + +#ifndef _WIN32 if (run_tests(argc, argv) != 1) return 1; #endif -- cgit v1.2.3