Add bug references to some tests

This commit is contained in:
Matthias Clasen
2010-08-13 21:22:45 -04:00
parent ea8a963936
commit e02571e93b
4 changed files with 45 additions and 0 deletions

View File

@@ -169,6 +169,8 @@ test_without_flush (SetupData *data,
{
prepare_data (data, FALSE);
g_test_bug ("617937");
/* just close asynchronously */
g_output_stream_close_async (data->conv_stream,
G_PRIORITY_DEFAULT,
@@ -184,6 +186,8 @@ test_with_flush (SetupData *data, gconstpointer user_data)
{
GError *error = NULL;
g_test_bug ("617937");
prepare_data (data, TRUE);
g_output_stream_flush (data->conv_stream, NULL, &error);
@@ -223,6 +227,8 @@ static void
test_with_async_flush (SetupData *data,
gconstpointer user_data)
{
g_test_bug ("617937");
prepare_data (data, TRUE);
/* first flush async */
@@ -246,6 +252,8 @@ main (int argc,
g_test_init (&argc, &argv, NULL);
g_test_bug_base ("http://bugzilla.gnome.org/");
data = g_slice_new (SetupData);
/* test closing asynchronously without flushing manually */

View File

@@ -643,6 +643,8 @@ test_roundtrip (gconstpointer data)
{
const CompressorTest *test = data;
g_test_bug ("162549");
test_corruption (test->format, test->level);
}
@@ -742,6 +744,8 @@ main (int argc,
g_type_init ();
g_test_init (&argc, &argv, NULL);
g_test_bug_base ("http://bugzilla.gnome.org/");
g_test_add_func ("/converter-input-stream/expander", test_expander);
g_test_add_func ("/converter-input-stream/compressor", test_compressor);