From: Seoyeon Kim Date: Mon, 8 Jul 2019 02:10:15 +0000 (+0900) Subject: [UTC][dali-adaptor][Non-ACR][Fix for build failure of dali-adaptor UTC] X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6518a49aebcbfdc1dee7699b5caa7634cd89f1aa;p=test%2Ftct%2Fnative%2Fapi.git [UTC][dali-adaptor][Non-ACR][Fix for build failure of dali-adaptor UTC] Change-Id: Ia5da0805bd12d852f71c9c57e139fa9a8f6470e0 Signed-off-by: Seoyeon Kim --- diff --git a/src/utc/dali-adaptor/window/utc-dali-window.cpp b/src/utc/dali-adaptor/window/utc-dali-window.cpp index 5cb7dc287..f226b3760 100755 --- a/src/utc/dali-adaptor/window/utc-dali-window.cpp +++ b/src/utc/dali-adaptor/window/utc-dali-window.cpp @@ -878,10 +878,10 @@ void WindowGetLayerCountP( Application& application ) // Add a new layer to the window Layer newLayer = Layer::New(); window.Add( newLayer ); - DALI_TEST_EQUALS( window.GetLayerCount() != 2u, "GetLayerCount is failed to get expected value" ); + DALI_CHECK_FAIL( window.GetLayerCount() != 2u, "GetLayerCount is failed to get expected value" ); // Retrieves the new layer from the window - DALI_TEST_EQUALS( window.GetLayer( 1u ) != newLayer, "GetLayer is failed to get expected value" ); + DALI_CHECK_FAIL( window.GetLayer( 1u ) != newLayer, "GetLayer is failed to get expected value" ); DaliLog::PrintPass(); } @@ -896,11 +896,11 @@ void WindowGetLayerP( Application& application ) // Add a new layer to the window Layer layer = Layer::New(); window.Add( layer ); - DALI_TEST_EQUALS( window.GetLayerCount() != 2u, "GetLayerCount is failed to get expected value" ); + DALI_CHECK_FAIL( window.GetLayerCount() != 2u, "GetLayerCount is failed to get expected value" ); // Remove the new layer from the window window.Remove( layer ); - DALI_TEST_EQUALS( window.GetLayerCount() != 1u, "GetLayerCount is failed to get expected value" ); + DALI_CHECK_FAIL( window.GetLayerCount() != 1u, "GetLayerCount is failed to get expected value" ); DaliLog::PrintPass(); }