From 57b03c92ae05a65460b3c011688abad4d3e72b42 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Mon, 23 Jul 2018 20:25:38 +0200 Subject: [PATCH] Added force tests --- test/core/CMakeLists.txt | 4 ++++ test/core/core_force_aligned_gentypes.cpp | 12 ++++++++++++ test/core/core_force_ctor_init.cpp | 12 ++++++++++++ test/core/core_force_explicit_ctor.cpp | 12 ++++++++++++ test/core/core_force_inline.cpp | 12 ++++++++++++ test/core/core_force_unrestricted_gentype.cpp | 2 +- 6 files changed, 53 insertions(+), 1 deletion(-) create mode 100644 test/core/core_force_aligned_gentypes.cpp create mode 100644 test/core/core_force_ctor_init.cpp create mode 100644 test/core/core_force_explicit_ctor.cpp create mode 100644 test/core/core_force_inline.cpp diff --git a/test/core/CMakeLists.txt b/test/core/CMakeLists.txt index eace0aba..13477a97 100644 --- a/test/core/CMakeLists.txt +++ b/test/core/CMakeLists.txt @@ -1,3 +1,7 @@ +glmCreateTestGTC(core_force_aligned_gentypes) +glmCreateTestGTC(core_force_ctor_init) +glmCreateTestGTC(core_force_explicit_ctor) +glmCreateTestGTC(core_force_inline) glmCreateTestGTC(core_force_pure) glmCreateTestGTC(core_force_unrestricted_gentype) glmCreateTestGTC(core_type_aligned) diff --git a/test/core/core_force_aligned_gentypes.cpp b/test/core/core_force_aligned_gentypes.cpp new file mode 100644 index 00000000..068d7efa --- /dev/null +++ b/test/core/core_force_aligned_gentypes.cpp @@ -0,0 +1,12 @@ +#define GLM_FORCE_ALIGNED_GENTYPES + +#include +#include + +int main() +{ + int Error = 0; + + return Error; +} + diff --git a/test/core/core_force_ctor_init.cpp b/test/core/core_force_ctor_init.cpp new file mode 100644 index 00000000..ec47c730 --- /dev/null +++ b/test/core/core_force_ctor_init.cpp @@ -0,0 +1,12 @@ +#define GLM_FORCE_CTOR_INIT + +#include +#include + +int main() +{ + int Error = 0; + + return Error; +} + diff --git a/test/core/core_force_explicit_ctor.cpp b/test/core/core_force_explicit_ctor.cpp new file mode 100644 index 00000000..cec2fe98 --- /dev/null +++ b/test/core/core_force_explicit_ctor.cpp @@ -0,0 +1,12 @@ +#define GLM_FORCE_EXPLICIT_CTOR + +#include +#include + +int main() +{ + int Error = 0; + + return Error; +} + diff --git a/test/core/core_force_inline.cpp b/test/core/core_force_inline.cpp new file mode 100644 index 00000000..cd23fd98 --- /dev/null +++ b/test/core/core_force_inline.cpp @@ -0,0 +1,12 @@ +#define GLM_FORCE_INLINE + +#include +#include + +int main() +{ + int Error = 0; + + return Error; +} + diff --git a/test/core/core_force_unrestricted_gentype.cpp b/test/core/core_force_unrestricted_gentype.cpp index f198fa33..21d6e520 100644 --- a/test/core/core_force_unrestricted_gentype.cpp +++ b/test/core/core_force_unrestricted_gentype.cpp @@ -1,7 +1,7 @@ #define GLM_FORCE_UNRESTRICTED_GENTYPE -#define GLM_FORCE_SWIZZLE #include +#include int main() {