diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-24 12:41:59 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-24 12:41:59 +0100 |
| commit | e476868bdc27ef0e36fc2485606634e7cf2ee00d (patch) | |
| tree | 462942c7e71c4c27cff6c32240f10a1726960a87 /test/allocator_op.test.cpp | |
| parent | 39a1ddf997daf1e4879b2e0cb2bd30ad6db2204c (diff) | |
feat: new alias for `allocator_op.hpp` pool types.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'test/allocator_op.test.cpp')
| -rw-r--r-- | test/allocator_op.test.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/allocator_op.test.cpp b/test/allocator_op.test.cpp index 890c9bc..925df8c 100644 --- a/test/allocator_op.test.cpp +++ b/test/allocator_op.test.cpp @@ -8,9 +8,9 @@ #define BOOST_TEST_MODULE allocator_op #include <boost/test/included/unit_test.hpp> -BOOST_AUTO_TEST_CASE( allocator_should_succeed ) +BOOST_AUTO_TEST_CASE(allocator_should_succeed) { - auto ptr = ocl::allocator<int>{}.construct_array<10>(); - int* arr = ptr.get(); - BOOST_TEST( arr != nullptr ); + auto ptr = ocl::allocator<int>{}.construct_array<10>(); + int* arr = ptr.get(); + BOOST_TEST(arr != nullptr); } |
