36 lines
1.1 KiB
C++
36 lines
1.1 KiB
C++
// Copyright 2022 Google LLC
|
|
//
|
|
// This source code is licensed under the BSD-style license found in the
|
|
// LICENSE file in the root directory of this source tree.
|
|
|
|
#include <xnnpack/allocator.h>
|
|
#include <xnnpack/common.h>
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
TEST(JitMemory, AllocateAndReleaseEmptyCode) {
|
|
xnn_code_buffer b;
|
|
ASSERT_EQ(xnn_status_success, xnn_allocate_code_memory(&b, XNN_DEFAULT_CODE_BUFFER_SIZE));
|
|
#if XNN_PLATFORM_JIT
|
|
ASSERT_EQ(xnn_status_success, xnn_finalize_code_memory(&b));
|
|
#endif // XNN_PLATFORM_JIT
|
|
ASSERT_EQ(xnn_status_success, xnn_release_code_memory(&b));
|
|
}
|
|
|
|
TEST(JitMemory, AllocateAndReleaseJunkCode) {
|
|
xnn_code_buffer b;
|
|
ASSERT_EQ(xnn_status_success, xnn_allocate_code_memory(&b, XNN_DEFAULT_CODE_BUFFER_SIZE));
|
|
std::string junk = "1234";
|
|
memcpy(b.code, junk.data(), junk.length());
|
|
#if XNN_PLATFORM_JIT
|
|
ASSERT_EQ(xnn_status_success, xnn_finalize_code_memory(&b));
|
|
#endif // XNN_PLATFORM_JIT
|
|
ASSERT_EQ(xnn_status_success, xnn_release_code_memory(&b));
|
|
}
|
|
|
|
TEST(JitMemory, AllocateAndReleaseCodeBufferWithNoCapacity) {
|
|
xnn_code_buffer b;
|
|
b.capacity = 0;
|
|
ASSERT_EQ(xnn_status_success, xnn_release_code_memory(&b));
|
|
}
|