app: make tests build again

This commit is contained in:
Michael Natterer
2012-05-19 01:27:37 +02:00
parent 5247f461aa
commit 91392f85e5
4 changed files with 10 additions and 7 deletions

View File

@ -85,7 +85,8 @@ test_config_LDFLAGS = \
-u $(SYMPREFIX)gimp_vectors_undo_get_type \
-u $(SYMPREFIX)gimp_vectors_mod_undo_get_type \
-u $(SYMPREFIX)gimp_vectors_prop_undo_get_type \
-u $(SYMPREFIX)gimp_image_map_config_get_type
-u $(SYMPREFIX)gimp_image_map_config_get_type \
-u $(SYMPREFIX)erode_region
test_config_LDADD = \
../xcf/libappxcf.a \
@ -97,7 +98,6 @@ test_config_LDADD = \
../file/libappfile.a \
../text/libapptext.a \
../paint/libapppaint.a \
../composite/libappcomposite.a \
../gegl/libappgegl.a \
../operations/libappoperations.a \
libappconfig.a \

View File

@ -105,7 +105,6 @@ LDADD = \
$(top_builddir)/app/file/libappfile.a \
$(top_builddir)/app/text/libapptext.a \
$(top_builddir)/app/paint/libapppaint.a \
$(top_builddir)/app/composite/libappcomposite.a \
$(top_builddir)/app/config/libappconfig.a \
$(top_builddir)/app/paint-funcs/libapppaint-funcs.a \
$(top_builddir)/app/base/libappbase.a \

View File

@ -219,7 +219,8 @@ saved_imported_file_uris (gconstpointer data)
proc,
GIMP_RUN_NONINTERACTIVE,
TRUE /*change_saved_state*/,
FALSE /*export*/,
FALSE /*export_backward*/,
FALSE /*export_forward*/,
NULL /*error*/);
/* Assert */
@ -259,7 +260,8 @@ exported_file_uris (gconstpointer data)
proc,
GIMP_RUN_NONINTERACTIVE,
FALSE /*change_saved_state*/,
TRUE /*export*/,
FALSE /*export_backward*/,
TRUE /*export_forward*/,
NULL /*error*/);
g_assert (gimp_image_get_uri (image) == NULL);
@ -323,7 +325,8 @@ clear_import_uri_after_export (gconstpointer data)
proc,
GIMP_RUN_NONINTERACTIVE,
FALSE /*change_saved_state*/,
TRUE /*export*/,
FALSE /*export_backward*/,
TRUE /*export_forward*/,
NULL /*error*/);
g_assert (gimp_image_get_uri (image) == NULL);

View File

@ -313,7 +313,8 @@ gimp_write_and_read_file (Gimp *gimp,
proc,
GIMP_RUN_NONINTERACTIVE,
FALSE /*change_saved_state*/,
FALSE /*export*/,
FALSE /*export_backward*/,
FALSE /*export_forward*/,
NULL /*error*/);
/* Load from file */