diff options
author | Benjamin Otte <otte@redhat.com> | 2015-10-06 01:13:04 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2015-10-13 02:56:48 +0200 |
commit | e93a1b5e261f4211c7ea2666843abe54467cde05 (patch) | |
tree | 47311ca1c72f5a77c69b66aef1fa35d4b35e3246 /tests/pixbuf-threads.c | |
parent | 331f93cc9997f3e766bf6953cd45bc6bed757088 (diff) | |
download | gdk-pixbuf-e93a1b5e261f4211c7ea2666843abe54467cde05.tar.gz |
tests: Name test images properly
Make sure they have a sane file extension so it's easy for tools to
identify them from their filename.
Diffstat (limited to 'tests/pixbuf-threads.c')
-rw-r--r-- | tests/pixbuf-threads.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/pixbuf-threads.c b/tests/pixbuf-threads.c index 1db139c99..8ea15a158 100644 --- a/tests/pixbuf-threads.c +++ b/tests/pixbuf-threads.c @@ -73,21 +73,21 @@ test_threads (void) for (i = 0; i < iterations; i++) { if (format_supported ("jpeg")) - g_thread_pool_push (pool, "valid_jpeg_test", NULL); + g_thread_pool_push (pool, "valid.1.jpeg", NULL); if (format_supported ("png")) - g_thread_pool_push (pool, "valid_png_test", NULL); + g_thread_pool_push (pool, "valid.1.png", NULL); if (format_supported ("gif")) - g_thread_pool_push (pool, "valid_gif_test", NULL); + g_thread_pool_push (pool, "valid.1.gif", NULL); if (format_supported ("bmp")) - g_thread_pool_push (pool, "valid_bmp_test", NULL); + g_thread_pool_push (pool, "valid.1.bmp", NULL); if (format_supported ("jpeg")) - g_thread_pool_push (pool, "valid_jpeg_progressive_test", NULL); + g_thread_pool_push (pool, "valid.2.jpeg", NULL); if (format_supported ("xpm")) - g_thread_pool_push (pool, "valid_xpm_test", NULL); + g_thread_pool_push (pool, "valid.1.xpm", NULL); if (format_supported ("tga")) - g_thread_pool_push (pool, "valid_tga_test", NULL); + g_thread_pool_push (pool, "valid.1.tga", NULL); if (format_supported ("tiff")) - g_thread_pool_push (pool, "valid_tiff1_test", NULL); + g_thread_pool_push (pool, "valid.1.tiff", NULL); } g_thread_pool_free (pool, FALSE, TRUE); |