summaryrefslogtreecommitdiff
path: root/source/tests/signals.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/tests/signals.cpp')
-rw-r--r--source/tests/signals.cpp29
1 files changed, 0 insertions, 29 deletions
diff --git a/source/tests/signals.cpp b/source/tests/signals.cpp
deleted file mode 100644
index 0f6d77a..0000000
--- a/source/tests/signals.cpp
+++ /dev/null
@@ -1,29 +0,0 @@
-#include "../kit_test/test.h"
-
-#include <cstdlib>
-#include <stdexcept>
-
-/* FIXME
- * MSVC tests fail in GitHub Actions.
- */
-
-TEST("c++ exception") {
- throw std::exception();
-}
-
-TEST("abort") {
- abort();
-}
-
-TEST("invalid access") {
- *(volatile int *) nullptr = 42;
-}
-
-int main(int argc, char **argv) {
-#ifndef _MSC_VER
- if (run_tests(argc, argv) != 1)
- return 1;
-#endif
-
- return 0;
-}