Dosyalar
rocm-systems/runtime/hsa-amd-aqlprofile/test/ctrl/test_assert.h
T
Evgeny 4174f07fd1 hsa-runtime integration
Change-Id: I48968966ffe164218ebff88d0e3a1268e96bf1dd
2017-07-05 10:55:30 -04:00

14 satır
788 B
C++

#ifndef _TEST_ASSERT_H_
#define _TEST_ASSERT_H_
#define test_assert(cond) \
{ \
if (!(cond)) { \
std::cout << "ASSERT FAILED(" << #cond << ") at \"" << __FILE__ << "\" line " << __LINE__ \
<< std::endl; \
exit(-1); \
} \
}
#endif // _TEST_ASSERT_H_