From 894bdab40ca92a1c6ff5f553322b6c9f11d48741 Mon Sep 17 00:00:00 2001 From: Heeyong Song Date: Wed, 2 Dec 2020 17:55:57 +0900 Subject: [PATCH] Remove unstable tc Change-Id: If37151a695a1d184f97d106b0ac97f7ed687b664 --- .../src/dali-toolkit/utc-Dali-Control.cpp | 25 ---------------------- 1 file changed, 25 deletions(-) diff --git a/automated-tests/src/dali-toolkit/utc-Dali-Control.cpp b/automated-tests/src/dali-toolkit/utc-Dali-Control.cpp index ddca23f..396bab4 100644 --- a/automated-tests/src/dali-toolkit/utc-Dali-Control.cpp +++ b/automated-tests/src/dali-toolkit/utc-Dali-Control.cpp @@ -1244,28 +1244,3 @@ int UtcDaliControlDoActionWhenNotStage(void) END_TEST; } - -int UtcDaliControlStopObservingVisual(void) -{ - ToolkitTestApplication application; - tet_infoline( "Test to stop observing a visual when a control is destroyed" ); - - Control control = Control::New(); - control[Actor::Property::SIZE] = Vector2( 200.f, 200.f ); - control[Control::Property::BACKGROUND] = "invalid.svg"; - - application.GetScene().Add( control ); - - application.SendNotification(); - application.Render(); - - // Delete control - control.Unparent(); - control.Reset(); - - // SVG rasterization may be finished after the control is deleted. - // Ensure it doesn't cause a crash. - DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 1 ), true, TEST_LOCATION ); - - END_TEST; -} -- 2.7.4