From 84a871cac7e6d6e6261c978e7730dad1c5045e8f Mon Sep 17 00:00:00 2001 From: Capostrophic <21265616+Capostrophic@users.noreply.github.com> Date: Sat, 28 Jul 2018 23:53:42 +0300 Subject: [PATCH] Actually enable is_pod test --- CHANGELOG.md | 1 + apps/openmw_test_suite/esm/test_fixed_string.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c2be0c008..bd8520193 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -86,6 +86,7 @@ Feature #4509: Show count of enchanted items in stack in the spells list Feature #4512: Editor: Use markers for lights and creatures levelled lists Task #2490: Don't open command prompt window on Release-mode builds automatically + Task #4545: Enable is_pod string test 0.44.0 ------ diff --git a/apps/openmw_test_suite/esm/test_fixed_string.cpp b/apps/openmw_test_suite/esm/test_fixed_string.cpp index 598e8daad..89a390ff6 100644 --- a/apps/openmw_test_suite/esm/test_fixed_string.cpp +++ b/apps/openmw_test_suite/esm/test_fixed_string.cpp @@ -64,7 +64,7 @@ TEST(EsmFixedString, struct_size) ASSERT_EQ(256, sizeof(ESM::NAME256)); } -TEST(EsmFixedString, DISABLED_is_pod) +TEST(EsmFixedString, is_pod) { ASSERT_TRUE(std::is_pod::value); ASSERT_TRUE(std::is_pod::value);