aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2020-05-27 22:07:38 +0200
committerdec05eba <dec05eba@protonmail.com>2020-07-06 07:39:58 +0200
commit1c1b372decaa2fb7f9761c376f8b44d2e6e33c35 (patch)
treeddc3cd8b8f77115374cb6e7a6e61b0264ca4b265 /tests
parentf6caac38117a99782513db0b62bfd29b921f873c (diff)
Fix platform family checks (fixed pthreads on linux)
Diffstat (limited to 'tests')
-rw-r--r--tests/src/platformTest.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/src/platformTest.cpp b/tests/src/platformTest.cpp
new file mode 100644
index 0000000..aecc3e4
--- /dev/null
+++ b/tests/src/platformTest.cpp
@@ -0,0 +1,14 @@
+#include <catch.hpp>
+#include "../../include/Platform.hpp"
+
+using namespace sibs;
+
+TEST_CASE("platform same family")
+{
+ REQUIRE(isSamePlatformFamily(PLATFORM_LINUX, PLATFORM_LINUX_X86_64));
+ REQUIRE(isSamePlatformFamily(PLATFORM_LINUX_X86_64, PLATFORM_LINUX));
+ REQUIRE(!isSamePlatformFamily(PLATFORM_LINUX_X86_64, PLATFORM_MACOS));
+ REQUIRE(!isSamePlatformFamily(PLATFORM_MACOS, PLATFORM_LINUX_X86_64));
+ REQUIRE(!isSamePlatformFamily(PLATFORM_MACOS, PLATFORM_LINUX));
+ REQUIRE(!isSamePlatformFamily(PLATFORM_LINUX, PLATFORM_MACOS));
+}