Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/blenlib/tests/BLI_uuid_test.cc')
-rw-r--r--source/blender/blenlib/tests/BLI_uuid_test.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/blenlib/tests/BLI_uuid_test.cc b/source/blender/blenlib/tests/BLI_uuid_test.cc
index b5d636ed1c3..f2160f614ba 100644
--- a/source/blender/blenlib/tests/BLI_uuid_test.cc
+++ b/source/blender/blenlib/tests/BLI_uuid_test.cc
@@ -54,9 +54,12 @@ TEST(BLI_uuid, nil_value)
{
const bUUID nil_uuid = BLI_uuid_nil();
const bUUID zeroes_uuid{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
+ const bUUID default_constructed{};
EXPECT_EQ(nil_uuid, zeroes_uuid);
EXPECT_TRUE(BLI_uuid_is_nil(nil_uuid));
+ EXPECT_TRUE(BLI_uuid_is_nil(default_constructed))
+ << "Default constructor should produce the nil value.";
std::string buffer(36, '\0');
BLI_uuid_format(buffer.data(), nil_uuid);