diff options
Diffstat (limited to 'eglib/test')
-rw-r--r-- | eglib/test/Makefile.in | 32 | ||||
-rw-r--r-- | eglib/test/sizes.c | 18 |
2 files changed, 18 insertions, 32 deletions
diff --git a/eglib/test/Makefile.in b/eglib/test/Makefile.in index c358da6352..d2de081dca 100644 --- a/eglib/test/Makefile.in +++ b/eglib/test/Makefile.in @@ -1,8 +1,9 @@ -# Makefile.in generated by automake 1.12.1 from Makefile.am. +# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2012 Free Software Foundation, Inc. - +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -55,8 +56,7 @@ target_triplet = @target@ @HAVE_GLIB_TRUE@noinst_PROGRAMS = test-glib$(EXEEXT) \ @HAVE_GLIB_TRUE@ test-eglib$(EXEEXT) subdir = test -DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ - $(top_srcdir)/../depcomp $(top_srcdir)/../mkinstalldirs +DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ @@ -126,7 +126,7 @@ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) -am__v_CC_0 = @echo " CC " $@; +am__v_CC_0 = @echo " CC " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ @@ -136,10 +136,10 @@ LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) -am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_0 = @echo " CCLD " $@; AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) -am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_0 = @echo " GEN " $@; DIST_SOURCES = $(test_eglib_SOURCES) $(am__test_glib_SOURCES_DIST) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ @@ -1215,20 +1215,6 @@ GTAGS: && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: $(HEADERS) $(SOURCES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags @@ -1371,7 +1357,7 @@ uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ - clean-libtool clean-noinstPROGRAMS cscopelist ctags distclean \ + clean-libtool clean-noinstPROGRAMS ctags distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ diff --git a/eglib/test/sizes.c b/eglib/test/sizes.c index 585cc11377..06ed8a5af2 100644 --- a/eglib/test/sizes.c +++ b/eglib/test/sizes.c @@ -60,22 +60,22 @@ test_ptrconv () return FAILED ("int to pointer and back conversions fail %d != %d", iv, iv2); uv = 0; - ptr = GUINT_TO_POINTER (iv); + ptr = GUINT_TO_POINTER (uv); uv2 = GPOINTER_TO_UINT (ptr); - if (iv != iv2) - return FAILED ("uint to pointer and back conversions fail %u != %d", iv, iv2); + if (uv != uv2) + return FAILED ("uint to pointer and back conversions fail %u != %d", uv, uv2); uv = 1; - ptr = GUINT_TO_POINTER (iv); + ptr = GUINT_TO_POINTER (uv); uv2 = GPOINTER_TO_UINT (ptr); - if (iv != iv2) - return FAILED ("uint to pointer and back conversions fail %u != %d", iv, iv2); + if (uv != uv2) + return FAILED ("uint to pointer and back conversions fail %u != %d", uv, uv2); uv = UINT32_MAX; - ptr = GUINT_TO_POINTER (iv); + ptr = GUINT_TO_POINTER (uv); uv2 = GPOINTER_TO_UINT (ptr); - if (iv != iv2) - return FAILED ("uint to pointer and back conversions fail %u != %d", iv, iv2); + if (uv != uv2) + return FAILED ("uint to pointer and back conversions fail %u != %d", uv, uv2); return NULL; |