mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2024-12-26 17:37:34 +00:00
976d40f669
https://github.com/catchorg/Catch2/releases/tag/v3.6.0 Part-of: <https://gitlab.freedesktop.org/monado/monado/-/merge_requests/2268>
47 lines
876 B
C++
47 lines
876 B
C++
// Copyright 2021, Collabora, Ltd.
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
/*!
|
|
* @file
|
|
* @brief Miscellanous C++ wrapper tests.
|
|
* @author Rylie Pavlik <rylie.pavlik@collabora.com>
|
|
*/
|
|
|
|
#include <iostream>
|
|
#include <xrt/xrt_device.hpp>
|
|
|
|
#include "catch_amalgamated.hpp"
|
|
|
|
|
|
struct silly_device
|
|
{
|
|
xrt_device base{};
|
|
bool *destroyed;
|
|
|
|
|
|
silly_device(bool &destroyed_) : destroyed(&destroyed_)
|
|
{
|
|
base.destroy = [](xrt_device *xdev) { delete reinterpret_cast<silly_device *>(xdev); };
|
|
}
|
|
~silly_device()
|
|
{
|
|
*destroyed = true;
|
|
}
|
|
};
|
|
|
|
TEST_CASE("unique_xrt_device")
|
|
{
|
|
|
|
bool destroyed = false;
|
|
{
|
|
// make the device
|
|
auto specific = std::make_unique<silly_device>(destroyed);
|
|
CHECK_FALSE(destroyed);
|
|
|
|
// use the generic unique_ptr
|
|
xrt::unique_xrt_device generic(&(specific.release()->base));
|
|
CHECK_FALSE(destroyed);
|
|
}
|
|
// make sure it went away
|
|
CHECK(destroyed);
|
|
}
|