Lines Matching defs:got_host
26 char *got_host;
44 got_host = (char *) -1;
47 success = xcb_parse_display(argument, &got_host, &got_display, &got_screen);
49 ck_assert_msg(strcmp(host, got_host) == 0, "parse %sproduced unexpected hostname '%s' for '%s': expected '%s'", test_string[test_type], got_host, name, host);
53 got_host = (char *) -1;
56 success = xcb_parse_display(argument, &got_host, &got_display, 0);
58 ck_assert_msg(strcmp(host, got_host) == 0, "screenless parse %sproduced unexpected hostname '%s' for '%s': expected '%s'", test_string[test_type], got_host, name, host);
67 char *got_host;
86 got_host = (char *) -1;
89 success = xcb_parse_display(argument, &got_host, &got_display, &got_screen);
91 ck_assert_msg(got_host == (char *) -1, "host changed on parse failure %sfor '%s': got %p", test_string[test_type], name, got_host);
95 got_host = (char *) -1;
98 success = xcb_parse_display(argument, &got_host, &got_display, 0);
100 ck_assert_msg(got_host == (char *) -1, "host changed on parse failure %sfor '%s': got %p", test_string[test_type], name, got_host);