Home | History | Annotate | Download | only in tests

Lines Matching defs:uris

145   /* URIs with backslashes come from some nonstandard application, but accept them anyhow */
419 gchar **uris;
422 uris = g_uri_list_extract_uris (list);
424 if (g_strv_length (uris) != 3)
427 " expected %d uris, but got %d\n",
428 3, g_strv_length (uris));
434 if (safe_strcmp (uris[j], expected_uris[j]))
438 expected_uris[j], uris[j]);
443 g_strfreev (uris);
445 uris = g_uri_list_extract_uris ("# just hot air\r\n# more hot air");
446 if (g_strv_length (uris) != 0)
449 " expected %d uris, but got %d (first is \"%s\")\n",
450 0, g_strv_length (uris), uris[0]);