add messages to explain that warnings are harmless

2006-02-09  Thomas Thurman <thomas thurman org uk>

        * src/testboxes.c (test_regions_okay, test_clamping_to_region):
        add messages to explain that warnings are harmless
This commit is contained in:
Thomas Thurman 2006-02-11 04:03:27 +00:00 committed by Elijah Newren
parent f39bcff434
commit 4b6a87acb5
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2006-02-09 Thomas Thurman <thomas thurman org uk>
* src/testboxes.c (test_regions_okay, test_clamping_to_region):
add messages to explain that warnings are harmless
Tue Feb 7 00:58:05 2006 Soeren Sandmann <sandmann@redhat.com> Tue Feb 7 00:58:05 2006 Soeren Sandmann <sandmann@redhat.com>
* src/compositor.c: Wrap fade code in #ifdef HAVE_COMPOSITE_EXTENSIONS * src/compositor.c: Wrap fade code in #ifdef HAVE_COMPOSITE_EXTENSIONS

View File

@ -645,6 +645,8 @@ test_regions_okay ()
/*************************************************************/ /*************************************************************/
/* Make sure test region 5 has the right spanning rectangles */ /* Make sure test region 5 has the right spanning rectangles */
/*************************************************************/ /*************************************************************/
printf ("The next test intentionally causes a warning, "
"but it can be ignored.\n");
region = get_screen_region (5); region = get_screen_region (5);
verify_lists_are_equal (region, NULL); verify_lists_are_equal (region, NULL);
@ -751,6 +753,8 @@ test_clamping_to_region ()
&min_size); &min_size);
g_assert (rect.width == 400 && rect.height == 1180); g_assert (rect.width == 400 && rect.height == 1180);
printf ("The next test intentionally causes a warning, "
"but it can be ignored.\n");
rect = meta_rect (50, 50, 10000, 10000); rect = meta_rect (50, 50, 10000, 10000);
min_size.width = 600; min_size.height = 1170; min_size.width = 600; min_size.height = 1170;
meta_rectangle_clamp_to_fit_into_region (region, meta_rectangle_clamp_to_fit_into_region (region,
@ -777,6 +781,8 @@ test_clamping_to_region ()
&min_size); &min_size);
g_assert (rect.width == 400 && rect.height == 1100); g_assert (rect.width == 400 && rect.height == 1100);
printf ("The next test intentionally causes a warning, "
"but it can be ignored.\n");
rect = meta_rect (300, 70, 999999, 999999); rect = meta_rect (300, 70, 999999, 999999);
min_size.width = 100; min_size.height = 200; min_size.width = 100; min_size.height = 200;
fixed_directions = FIXED_DIRECTION_Y; fixed_directions = FIXED_DIRECTION_Y;