summaryrefslogtreecommitdiff
path: root/tests/ivi_layout-internal-test.c
diff options
context:
space:
mode:
authorUcan, Emre \(ADITG/SW1\) <eucan@de.adit-jv.com>2016-03-04 12:50:20 +0000
committerBryce Harrington <bryce@osg.samsung.com>2016-03-04 10:33:34 -0800
commitb2ff255792a4208b7f864421f5635bc2e281f544 (patch)
tree06eed3f6cdb029fb58e2a23caae486db5a6c354c /tests/ivi_layout-internal-test.c
parentc3aee1f67f09594b4ecb746a9b038ba10aeb0967 (diff)
downloadweston-b2ff255792a4208b7f864421f5635bc2e281f544.tar.gz
ivi-shell: remove ivi_layout_surface_get_position API
Signed-off-by: Emre Ucan <eucan@de.adit-jv.com> Acked-by: wataru_natsume <wataru_natsume@xddp.denso.co.jp> Reviewed-by: Bryce Harrington <bryce@osg.samsung.com>
Diffstat (limited to 'tests/ivi_layout-internal-test.c')
-rw-r--r--tests/ivi_layout-internal-test.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/ivi_layout-internal-test.c b/tests/ivi_layout-internal-test.c
index 3e31870f..cb34fc1f 100644
--- a/tests/ivi_layout-internal-test.c
+++ b/tests/ivi_layout-internal-test.c
@@ -113,17 +113,10 @@ static void
test_surface_bad_position(struct test_context *ctx)
{
const struct ivi_layout_interface *lyt = ctx->layout_interface;
- struct ivi_layout_surface *ivisurf = NULL;
- int32_t dest_x;
- int32_t dest_y;
iassert(lyt->surface_set_position(NULL, 20, 30) == IVI_FAILED);
lyt->commit_changes();
-
- iassert(lyt->surface_get_position(NULL, &dest_x, &dest_y) == IVI_FAILED);
- iassert(lyt->surface_get_position(ivisurf, NULL, &dest_y) == IVI_FAILED);
- iassert(lyt->surface_get_position(ivisurf, &dest_x, NULL) == IVI_FAILED);
}
static void