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