2023-08-16 00:20:26 +10:00
|
|
|
/* SPDX-FileCopyrightText: 2020-2022 Blender Authors
|
2023-06-15 13:09:04 +10:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0 */
|
|
|
|
|
|
2020-11-17 11:38:42 +01:00
|
|
|
#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__
|