diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2023-09-12 07:18:00 +0200 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2023-09-12 07:18:00 +0200 |
commit | b5f549cc9f984a4af363ef41696815a789ce3d13 (patch) | |
tree | 25dd07aa3a1ef43804bc1c3cfb084536c11c7108 /source/tests | |
parent | f0e738028819ac988dbd825cf1962188c9e5cdc3 (diff) | |
download | kit-b5f549cc9f984a4af363ef41696815a789ce3d13.zip |
kit_test: signals
Diffstat (limited to 'source/tests')
-rw-r--r-- | source/tests/test_signals.cpp | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/source/tests/test_signals.cpp b/source/tests/test_signals.cpp index 6b0fb28..a721f46 100644 --- a/source/tests/test_signals.cpp +++ b/source/tests/test_signals.cpp @@ -17,17 +17,7 @@ TEST("invalid access") { } int main(int argc, char **argv) { - // FIXME - // On Windows, doesn't work for some reason... - // Both MSVC and MinGW. - // - -#ifndef _WIN32 - if (run_tests(argc, argv) != 1) - return 1; -#endif - - return 0; + return run_tests(argc, argv) ? 0 : 1; } #undef KIT_TEST_FILE |