tc: fix the prefix of the definition in tc_tbm.h
[platform/core/uifw/libtbm.git] / haltests / tc_tbm_bufmgr.cpp
index 888b017..9357b69 100644 (file)
@@ -80,7 +80,7 @@ TEST_F(TBMBufmgr, BufmgrGetCapabilityWithNullBufmgr)
 
 TEST_F(TBMBufmgr, BufmgrGetCapabilityWithWrongBufmgr)
 {
-       tbm_bufmgr bufmgr = (tbm_bufmgr)UT_TBM_INVALID_VALUE;
+       tbm_bufmgr bufmgr = (tbm_bufmgr)TBM_UT_INVALID_VALUE;
        unsigned int capability;
 
        capability = tbm_bufmgr_get_capability(bufmgr);
@@ -93,7 +93,7 @@ TEST_F(TBMBufmgr, BufmgrGetCapabilityWithWrongBufmgr)
 TEST_F(TBMBufmgr, BufmgrBindNativeDisplay)
 {
        int ret;
-       void *native_display = (void *)UT_TBM_INVALID_VALUE;
+       void *native_display = (void *)TBM_UT_INVALID_VALUE;
 
        ret = tbm_bufmgr_bind_native_display(bufmgr, native_display);
        ASSERT_EQ(ret, 1);
@@ -102,7 +102,7 @@ TEST_F(TBMBufmgr, BufmgrBindNativeDisplay)
 TEST_F(TBMBufmgr, BufmgrBindNativeDisplayWithNullBufmgr)
 {
        int ret;
-       void *native_display = (void *)UT_TBM_INVALID_VALUE;
+       void *native_display = (void *)TBM_UT_INVALID_VALUE;
 
        ret = tbm_bufmgr_bind_native_display(NULL, native_display);
        ASSERT_EQ(ret, 0);
@@ -111,7 +111,7 @@ TEST_F(TBMBufmgr, BufmgrBindNativeDisplayWithNullBufmgr)
 TEST_F(TBMBufmgr, BufmgrBindNativeDisplayWithWrongBufmgr)
 {
        int ret;
-       void *native_display = (void *)UT_TBM_INVALID_VALUE;
+       void *native_display = (void *)TBM_UT_INVALID_VALUE;
 
        ret = tbm_bufmgr_bind_native_display(NULL, native_display);
        ASSERT_EQ(ret, 0);