diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2023-09-06 03:05:09 +0200 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2023-09-06 03:05:09 +0200 |
commit | 942687d1cfa65b11cd5dbd9556a99e9be7b60c3b (patch) | |
tree | 41ae896576d2f78641964286b2c82ce1bfc2f5cc /source/tests | |
parent | ed6879a93d79c0ae4b7f331d5bcd055a0d43af9e (diff) | |
download | kit-942687d1cfa65b11cd5dbd9556a99e9be7b60c3b.zip |
test
Diffstat (limited to 'source/tests')
-rw-r--r-- | source/tests/test_signals.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
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 <cstdlib> #include <stdexcept> -/* 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 |