Remove unstable tc 95/248795/2
authorHeeyong Song <heeyong.song@samsung.com>
Wed, 2 Dec 2020 08:55:57 +0000 (17:55 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Tue, 8 Dec 2020 06:20:49 +0000 (06:20 +0000)
Change-Id: If37151a695a1d184f97d106b0ac97f7ed687b664

automated-tests/src/dali-toolkit/utc-Dali-Control.cpp

index ddca23f..396bab4 100644 (file)
@@ -1244,28 +1244,3 @@ int UtcDaliControlDoActionWhenNotStage(void)
 
   END_TEST;
 }
 
   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;
-}