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 'intern/guardedalloc/tests/guardedalloc_test_base.h')
-rw-r--r--intern/guardedalloc/tests/guardedalloc_test_base.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/intern/guardedalloc/tests/guardedalloc_test_base.h b/intern/guardedalloc/tests/guardedalloc_test_base.h
new file mode 100644
index 00000000000..c56cb9abe29
--- /dev/null
+++ b/intern/guardedalloc/tests/guardedalloc_test_base.h
@@ -0,0 +1,26 @@
+/* Apache License, Version 2.0 */
+
+#ifndef __GUARDEDALLOC_TEST_UTIL_H__
+#define __GUARDEDALLOC_TEST_UTIL_H__
+
+#include "testing/testing.h"
+
+#include "MEM_guardedalloc.h"
+
+class LockFreeAllocatorTest : public ::testing::Test {
+ protected:
+ virtual void SetUp()
+ {
+ MEM_use_lockfree_allocator();
+ }
+};
+
+class GuardedAllocatorTest : public ::testing::Test {
+ protected:
+ virtual void SetUp()
+ {
+ MEM_use_guarded_allocator();
+ }
+};
+
+#endif // __GUARDEDALLOC_TEST_UTIL_H__