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:
authorBrecht Van Lommel <brecht@blender.org>2020-08-07 17:43:42 +0300
committerBrecht Van Lommel <brecht@blender.org>2020-08-10 19:14:00 +0300
commit53d203dea8230da4e80f3cc61468a4e24ff6759c (patch)
tree3f1b7498fb1a3108e60a4355bec0e4eef76110e4 /tests/gtests/blenlib/BLI_session_uuid_test.cc
parentaf77bf1f0f94cb07d5bf681d1f771d4106873780 (diff)
Tests: move remaining gtests into their own module folders
And make them part of the blender_test runner. The one exception is blenlib performance tests, which we don't want to run by default. They remain in their own executable. Differential Revision: https://developer.blender.org/D8498
Diffstat (limited to 'tests/gtests/blenlib/BLI_session_uuid_test.cc')
-rw-r--r--tests/gtests/blenlib/BLI_session_uuid_test.cc20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/gtests/blenlib/BLI_session_uuid_test.cc b/tests/gtests/blenlib/BLI_session_uuid_test.cc
deleted file mode 100644
index 1a5f17be06c..00000000000
--- a/tests/gtests/blenlib/BLI_session_uuid_test.cc
+++ /dev/null
@@ -1,20 +0,0 @@
-/* Apache License, Version 2.0 */
-
-#include "testing/testing.h"
-
-#include "BLI_session_uuid.h"
-
-TEST(SessionUUID, GenerateBasic)
-{
- {
- const SessionUUID uuid = BLI_session_uuid_generate();
- EXPECT_TRUE(BLI_session_uuid_is_generated(&uuid));
- }
-
- {
- const SessionUUID uuid1 = BLI_session_uuid_generate();
- const SessionUUID uuid2 = BLI_session_uuid_generate();
-
- EXPECT_FALSE(BLI_session_uuid_is_equal(&uuid1, &uuid2));
- }
-}