Remove codes which refers deleted attribute 34/107034/2 accepted/tizen_3.0.m2_mobile accepted/tizen_3.0.m2_tv accepted/tizen_3.0.m2_wearable tizen_3.0.m2 accepted/tizen/3.0.m2/mobile/20170104.121827 accepted/tizen/3.0.m2/tv/20170104.122604 accepted/tizen/3.0.m2/wearable/20170104.122919 accepted/tizen/3.0/common/20161227.181335 accepted/tizen/3.0/ivi/20161227.141650 accepted/tizen/3.0/mobile/20161227.141455 accepted/tizen/3.0/tv/20161227.141529 accepted/tizen/3.0/wearable/20161227.141628 submit/tizen_3.0.m2/20170104.093749 submit/tizen_3.0/20161226.101740
authorJunghyun Yeon <jungh.yeon@samsung.com>
Mon, 26 Dec 2016 07:32:30 +0000 (16:32 +0900)
committerJunghyun Yeon <jungh.yeon@samsung.com>
Mon, 26 Dec 2016 07:42:28 +0000 (23:42 -0800)
Related changes:
[pkgmgr-info] : https://review.tizen.org/gerrit/107032
[app-installers] : https://review.tizen.org/gerrit/107033
[wgt-backend] : https://review.tizen.org/gerrit/107035

Change-Id: Ie39dd87bbf51d3c9a07706b2a7f0110f32e69c76
Signed-off-by: Junghyun Yeon <jungh.yeon@samsung.com>
src/unit_tests/manifest_test_service_application.cc
src/unit_tests/manifest_test_ui_application.cc
src/unit_tests/manifest_test_watch_application.cc
src/unit_tests/manifest_test_widget_application.cc

index 264b4eee71d1a26416a2eeab25f357c26d0a0b39..876c481d5a1f3e1d2fc1a16d35b56d7ea3b33b3c 100644 (file)
@@ -545,7 +545,6 @@ TEST_F(ManifestTest, ServiceApplicationElement_SetManifestXDefaults) {
   ASSERT_CSTR_EQ(app->nodisplay, "true");
   ASSERT_CSTR_EQ(app->multiple, "false");
   ASSERT_CSTR_EQ(app->taskmanage, "true");
-  ASSERT_CSTR_EQ(app->enabled, "true");
   ASSERT_CSTR_EQ(app->hwacceleration, "default");
   ASSERT_CSTR_EQ(app->screenreader, "use-system-setting");
   ASSERT_CSTR_EQ(app->component_type, "svcapp");
index fc463f798f150c0e6cd94bd7618ac57f58b73827..da0e9b55a5521b57cb52aeb214fac85b988fe65d 100644 (file)
@@ -596,7 +596,6 @@ TEST_F(ManifestTest, UIApplicationElement_SetManifestXDefaults) {
   ASSERT_CSTR_EQ(app->nodisplay, "false");
   ASSERT_CSTR_EQ(app->multiple, "false");
   ASSERT_CSTR_EQ(app->taskmanage, "true");
-  ASSERT_CSTR_EQ(app->enabled, "true");
   ASSERT_CSTR_EQ(app->hwacceleration, "default");
   ASSERT_CSTR_EQ(app->screenreader, "use-system-setting");
   ASSERT_CSTR_EQ(app->component_type, "uiapp");
index 33b0979cfe566285d1fd1ec05ab9c7f2d1e13ddd..07e95de647089792ce15b31f62580788fc8616e5 100644 (file)
@@ -133,7 +133,6 @@ TEST_F(ManifestTest, WatchApplicationElement_SetManifestXDefaults) {
   ASSERT_CSTR_EQ(app->nodisplay, "true");
   ASSERT_CSTR_EQ(app->multiple, "false");
   ASSERT_CSTR_EQ(app->taskmanage, "false");
-  ASSERT_CSTR_EQ(app->enabled, "true");
   ASSERT_CSTR_EQ(app->hwacceleration, "default");
   ASSERT_CSTR_EQ(app->screenreader, "use-system-setting");
   ASSERT_CSTR_EQ(app->component_type, "watchapp");
index 1c47c0b2810205c6c94422cf5efef34a117b94f2..657d13c6787bfb4c1eed243c9df934c2decd5003 100644 (file)
@@ -128,7 +128,6 @@ TEST_F(ManifestTest, WidgetApplicationElement_SetManifestXDefaults) {
   ASSERT_CSTR_EQ(app->nodisplay, "true");
   ASSERT_CSTR_EQ(app->multiple, "false");
   ASSERT_CSTR_EQ(app->taskmanage, "false");
-  ASSERT_CSTR_EQ(app->enabled, "true");
   ASSERT_CSTR_EQ(app->hwacceleration, "default");
   ASSERT_CSTR_EQ(app->screenreader, "use-system-setting");
   ASSERT_CSTR_EQ(app->component_type, "widgetapp");