From f567f6b4cd696277fb48d7778d1aa0626f312d72 Mon Sep 17 00:00:00 2001 From: Alon Levy Date: Mon, 3 Sep 2012 19:26:20 +0300 Subject: [PATCH] server/tests/test_display_base: fix update_area abort Don't do zero area update_areas, server now aborts on those. This tester is not supposed to test those aborts. --- server/tests/test_display_base.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/server/tests/test_display_base.c b/server/tests/test_display_base.c index 3426ff44..710e3a8f 100644 --- a/server/tests/test_display_base.c +++ b/server/tests/test_display_base.c @@ -491,7 +491,9 @@ static void produce_command(Test *test) .top = 0, .bottom = (test->target_surface == 0 ? test_height : SURF_HEIGHT) }; - qxl_worker->update_area(qxl_worker, test->target_surface, &rect, NULL, 0, 1); + if (rect.right > 0 && rect.bottom > 0) { + qxl_worker->update_area(qxl_worker, test->target_surface, &rect, NULL, 0, 1); + } break; }