ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
25 lines
509 B
C
25 lines
509 B
C
#include "config.h"
|
|
#include "gdk-pixbuf/gdk-pixbuf.h"
|
|
#include <glib.h>
|
|
|
|
static void
|
|
test_gif_circular_table (void)
|
|
{
|
|
GdkPixbuf *pixbuf;
|
|
GError *error = NULL;
|
|
|
|
pixbuf = gdk_pixbuf_new_from_file (g_test_get_filename (G_TEST_DIST, "circular-table.gif", NULL), &error);
|
|
g_assert_no_error (error);
|
|
|
|
g_object_unref (pixbuf);
|
|
}
|
|
|
|
int main (int argc, char *argv[])
|
|
{
|
|
g_test_init (&argc, &argv, NULL);
|
|
|
|
g_test_add_func ("/pixbuf/gif/circular-table", test_gif_circular_table);
|
|
|
|
return g_test_run ();
|
|
}
|