From 3ee3659adb0dcbe480317151fec3f613c198e0d0 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sun, 5 Jan 2020 20:57:20 +0100 Subject: [PATCH] Added force defines tests --- test/core/CMakeLists.txt | 7 +++++++ test/core/core_force_arch_unknown.cpp | 12 ++++++++++++ test/core/core_force_compiler_unknown.cpp | 12 ++++++++++++ test/core/core_force_cxx03.cpp | 12 ++++++++++++ test/core/core_force_cxx11.cpp | 12 ++++++++++++ test/core/core_force_cxx98.cpp | 12 ++++++++++++ test/core/core_force_cxx_unknown.cpp | 12 ++++++++++++ test/core/core_force_depth_zero_to_one.cpp | 12 ++++++++++++ test/core/core_force_left_handed.cpp | 12 ++++++++++++ test/core/core_force_platform_unknown.cpp | 12 ++++++++++++ test/core/core_force_size_t_length.cpp | 12 ++++++++++++ 11 files changed, 127 insertions(+) create mode 100644 test/core/core_force_arch_unknown.cpp create mode 100644 test/core/core_force_compiler_unknown.cpp create mode 100644 test/core/core_force_cxx03.cpp create mode 100644 test/core/core_force_cxx11.cpp create mode 100644 test/core/core_force_cxx98.cpp create mode 100644 test/core/core_force_cxx_unknown.cpp create mode 100644 test/core/core_force_depth_zero_to_one.cpp create mode 100644 test/core/core_force_left_handed.cpp create mode 100644 test/core/core_force_platform_unknown.cpp create mode 100644 test/core/core_force_size_t_length.cpp diff --git a/test/core/CMakeLists.txt b/test/core/CMakeLists.txt index 935792b9..3e47df2e 100644 --- a/test/core/CMakeLists.txt +++ b/test/core/CMakeLists.txt @@ -2,8 +2,15 @@ glmCreateTestGTC(core_cpp_constexpr) glmCreateTestGTC(core_cpp_defaulted_ctor) glmCreateTestGTC(core_force_aligned_gentypes) glmCreateTestGTC(core_force_ctor_init) +glmCreateTestGTC(core_force_cxx03) +glmCreateTestGTC(core_force_cxx11) +glmCreateTestGTC(core_force_cxx98) +glmCreateTestGTC(core_force_arch_unknown) +glmCreateTestGTC(core_force_compiler_unknown) +glmCreateTestGTC(core_force_cxx_unknown) glmCreateTestGTC(core_force_explicit_ctor) glmCreateTestGTC(core_force_inline) +glmCreateTestGTC(core_force_platform_unknown) glmCreateTestGTC(core_force_pure) glmCreateTestGTC(core_force_unrestricted_gentype) glmCreateTestGTC(core_force_xyzw_only) diff --git a/test/core/core_force_arch_unknown.cpp b/test/core/core_force_arch_unknown.cpp new file mode 100644 index 00000000..b8072ccd --- /dev/null +++ b/test/core/core_force_arch_unknown.cpp @@ -0,0 +1,12 @@ +#define GLM_FORCE_ARCH_UNKNOWN + +#include +#include + +int main() +{ + int Error = 0; + + return Error; +} + diff --git a/test/core/core_force_compiler_unknown.cpp b/test/core/core_force_compiler_unknown.cpp new file mode 100644 index 00000000..ca6f0e1e --- /dev/null +++ b/test/core/core_force_compiler_unknown.cpp @@ -0,0 +1,12 @@ +#define GLM_FORCE_COMPILER_UNKNOWN + +#include +#include + +int main() +{ + int Error = 0; + + return Error; +} + diff --git a/test/core/core_force_cxx03.cpp b/test/core/core_force_cxx03.cpp new file mode 100644 index 00000000..e71e00cd --- /dev/null +++ b/test/core/core_force_cxx03.cpp @@ -0,0 +1,12 @@ +#define GLM_FORCE_CXX03 + +#include +#include + +int main() +{ + int Error = 0; + + return Error; +} + diff --git a/test/core/core_force_cxx11.cpp b/test/core/core_force_cxx11.cpp new file mode 100644 index 00000000..610ea344 --- /dev/null +++ b/test/core/core_force_cxx11.cpp @@ -0,0 +1,12 @@ +#define GLM_FORCE_CXX11 + +#include +#include + +int main() +{ + int Error = 0; + + return Error; +} + diff --git a/test/core/core_force_cxx98.cpp b/test/core/core_force_cxx98.cpp new file mode 100644 index 00000000..56422e48 --- /dev/null +++ b/test/core/core_force_cxx98.cpp @@ -0,0 +1,12 @@ +#define GLM_FORCE_CXX98 + +#include +#include + +int main() +{ + int Error = 0; + + return Error; +} + diff --git a/test/core/core_force_cxx_unknown.cpp b/test/core/core_force_cxx_unknown.cpp new file mode 100644 index 00000000..61c5190c --- /dev/null +++ b/test/core/core_force_cxx_unknown.cpp @@ -0,0 +1,12 @@ +#define GLM_FORCE_CXX_UNKNOWN + +#include +#include + +int main() +{ + int Error = 0; + + return Error; +} + diff --git a/test/core/core_force_depth_zero_to_one.cpp b/test/core/core_force_depth_zero_to_one.cpp new file mode 100644 index 00000000..23b36159 --- /dev/null +++ b/test/core/core_force_depth_zero_to_one.cpp @@ -0,0 +1,12 @@ +#define GLM_FORCE_DEPTH_ZERO_TO_ONE + +#include +#include + +int main() +{ + int Error = 0; + + return Error; +} + diff --git a/test/core/core_force_left_handed.cpp b/test/core/core_force_left_handed.cpp new file mode 100644 index 00000000..b7ec31b5 --- /dev/null +++ b/test/core/core_force_left_handed.cpp @@ -0,0 +1,12 @@ +#define GLM_FORCE_LEFT_HANDED + +#include +#include + +int main() +{ + int Error = 0; + + return Error; +} + diff --git a/test/core/core_force_platform_unknown.cpp b/test/core/core_force_platform_unknown.cpp new file mode 100644 index 00000000..65110ad7 --- /dev/null +++ b/test/core/core_force_platform_unknown.cpp @@ -0,0 +1,12 @@ +#define GLM_FORCE_PLATFORM_UNKNOWN + +#include +#include + +int main() +{ + int Error = 0; + + return Error; +} + diff --git a/test/core/core_force_size_t_length.cpp b/test/core/core_force_size_t_length.cpp new file mode 100644 index 00000000..19dac897 --- /dev/null +++ b/test/core/core_force_size_t_length.cpp @@ -0,0 +1,12 @@ +#define GLM_FORCE_SIZE_T_LENGTH + +#include +#include + +int main() +{ + int Error = 0; + + return Error; +} +