|
#include <unittest/unittest.h> |
|
#include <thrust/device_vector.h> |
|
#include <thrust/device_ptr.h> |
|
#include <thrust/device_new.h> |
|
#include <thrust/device_delete.h> |
|
|
|
#include <nv/target> |
|
|
|
struct Foo |
|
{ |
|
__host__ __device__ |
|
Foo(void) |
|
: set_me_upon_destruction{nullptr} |
|
{} |
|
|
|
__host__ __device__ |
|
~Foo(void) |
|
{ |
|
NV_IF_TARGET(NV_IS_DEVICE, ( |
|
if (set_me_upon_destruction != nullptr) |
|
{ |
|
*set_me_upon_destruction = true; |
|
})); |
|
} |
|
|
|
bool *set_me_upon_destruction; |
|
}; |
|
|
|
#if !defined(__QNX__) |
|
void TestDeviceDeleteDestructorInvocation(void) |
|
{ |
|
KNOWN_FAILURE; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
DECLARE_UNITTEST(TestDeviceDeleteDestructorInvocation); |
|
#endif |
|
|