summaryrefslogtreecommitdiff
path: root/tests/mpz
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2001-08-14 02:14:26 +0200
committerKevin Ryde <user42@zip.com.au>2001-08-14 02:14:26 +0200
commitc35154b39fa00d9e8be97d771336bce61a886d18 (patch)
tree4dfef006138c6b484edfb07dca1b70cf18852f96 /tests/mpz
parent61f231287196ff54156655c6e6c59d60d3709b5f (diff)
downloadgmp-c35154b39fa00d9e8be97d771336bce61a886d18.tar.gz
Regenerate for:
* tests/mpz/t-inp_str.c: New file. * tests/mpz/Makefile.am: Add it.
Diffstat (limited to 'tests/mpz')
-rw-r--r--tests/mpz/Makefile.in72
1 files changed, 43 insertions, 29 deletions
diff --git a/tests/mpz/Makefile.in b/tests/mpz/Makefile.in
index 49766daba..578af7020 100644
--- a/tests/mpz/Makefile.in
+++ b/tests/mpz/Makefile.in
@@ -130,7 +130,7 @@ INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/tests
LDADD = $(top_builddir)/tests/libtests.la $(top_builddir)/libgmp.la
check_PROGRAMS = t-cmp t-mul t-mul_i t-tdiv t-tdiv_ui t-fdiv t-fdiv_ui t-gcd \
- t-lcm dive dive_ui t-sqrtrem convert io logic bit \
+ t-lcm dive dive_ui t-sqrtrem convert io t-inp_str logic bit \
t-powm t-powm_ui t-pow t-div_2exp reuse \
t-root t-jac t-bin t-get_si t-set_si \
t-fac_ui t-fib_ui t-lucnum_ui t-scan t-fits \
@@ -140,8 +140,11 @@ check_PROGRAMS = t-cmp t-mul t-mul_i t-tdiv t-tdiv_ui t-fdiv t-fdiv_ui t-gcd \
TESTS = $(check_PROGRAMS)
-# io.tmp is used by io.c, removed automatically if the tests pass
-CLEANFILES = io.tmp
+# io.tmp and t-inp_str.tmp are used by io.c and t-inp_str.c respectively,
+# both removed automatically if the tests pass, but arrange to clean them
+# here if the tests fail
+#
+CLEANFILES = io.tmp t-inp_str.tmp
subdir = tests/mpz
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
CONFIG_HEADER = $(top_builddir)/config.h
@@ -150,16 +153,16 @@ check_PROGRAMS = t-cmp$(EXEEXT) t-mul$(EXEEXT) t-mul_i$(EXEEXT) \
t-tdiv$(EXEEXT) t-tdiv_ui$(EXEEXT) t-fdiv$(EXEEXT) \
t-fdiv_ui$(EXEEXT) t-gcd$(EXEEXT) t-lcm$(EXEEXT) dive$(EXEEXT) \
dive_ui$(EXEEXT) t-sqrtrem$(EXEEXT) convert$(EXEEXT) \
- io$(EXEEXT) logic$(EXEEXT) bit$(EXEEXT) t-powm$(EXEEXT) \
- t-powm_ui$(EXEEXT) t-pow$(EXEEXT) t-div_2exp$(EXEEXT) \
- reuse$(EXEEXT) t-root$(EXEEXT) t-jac$(EXEEXT) t-bin$(EXEEXT) \
- t-get_si$(EXEEXT) t-set_si$(EXEEXT) t-fac_ui$(EXEEXT) \
- t-fib_ui$(EXEEXT) t-lucnum_ui$(EXEEXT) t-scan$(EXEEXT) \
- t-fits$(EXEEXT) t-divis$(EXEEXT) t-divis_2exp$(EXEEXT) \
- t-cong$(EXEEXT) t-cong_2exp$(EXEEXT) t-sizeinbase$(EXEEXT) \
- t-set_str$(EXEEXT) t-aorsmul$(EXEEXT) t-cmp_d$(EXEEXT) \
- t-cmp_si$(EXEEXT) t-oddeven$(EXEEXT) t-popcount$(EXEEXT) \
- t-set_f$(EXEEXT)
+ io$(EXEEXT) t-inp_str$(EXEEXT) logic$(EXEEXT) bit$(EXEEXT) \
+ t-powm$(EXEEXT) t-powm_ui$(EXEEXT) t-pow$(EXEEXT) \
+ t-div_2exp$(EXEEXT) reuse$(EXEEXT) t-root$(EXEEXT) \
+ t-jac$(EXEEXT) t-bin$(EXEEXT) t-get_si$(EXEEXT) \
+ t-set_si$(EXEEXT) t-fac_ui$(EXEEXT) t-fib_ui$(EXEEXT) \
+ t-lucnum_ui$(EXEEXT) t-scan$(EXEEXT) t-fits$(EXEEXT) \
+ t-divis$(EXEEXT) t-divis_2exp$(EXEEXT) t-cong$(EXEEXT) \
+ t-cong_2exp$(EXEEXT) t-sizeinbase$(EXEEXT) t-set_str$(EXEEXT) \
+ t-aorsmul$(EXEEXT) t-cmp_d$(EXEEXT) t-cmp_si$(EXEEXT) \
+ t-oddeven$(EXEEXT) t-popcount$(EXEEXT) t-set_f$(EXEEXT)
bit_SOURCES = bit.c
bit_OBJECTS = bit$U.$(OBJEXT)
bit_LDADD = $(LDADD)
@@ -304,6 +307,12 @@ t_get_si_LDADD = $(LDADD)
t_get_si_DEPENDENCIES = $(top_builddir)/tests/libtests.la \
$(top_builddir)/libgmp.la
t_get_si_LDFLAGS =
+t_inp_str_SOURCES = t-inp_str.c
+t_inp_str_OBJECTS = t-inp_str$U.$(OBJEXT)
+t_inp_str_LDADD = $(LDADD)
+t_inp_str_DEPENDENCIES = $(top_builddir)/tests/libtests.la \
+ $(top_builddir)/libgmp.la
+t_inp_str_LDFLAGS =
t_jac_SOURCES = t-jac.c
t_jac_OBJECTS = t-jac$U.$(OBJEXT)
t_jac_LDADD = $(LDADD)
@@ -437,12 +446,12 @@ DIST_SOURCES = bit.c convert.c dive.c dive_ui.c io.c logic.c reuse.c \
t-aorsmul.c t-bin.c t-cmp.c t-cmp_d.c t-cmp_si.c t-cong.c \
t-cong_2exp.c t-div_2exp.c t-divis.c t-divis_2exp.c t-fac_ui.c \
t-fdiv.c t-fdiv_ui.c t-fib_ui.c t-fits.c t-gcd.c t-get_si.c \
- t-jac.c t-lcm.c t-lucnum_ui.c t-mul.c t-mul_i.c t-oddeven.c \
- t-popcount.c t-pow.c t-powm.c t-powm_ui.c t-root.c t-scan.c \
- t-set_f.c t-set_si.c t-set_str.c t-sizeinbase.c t-sqrtrem.c \
- t-tdiv.c t-tdiv_ui.c
+ t-inp_str.c t-jac.c t-lcm.c t-lucnum_ui.c t-mul.c t-mul_i.c \
+ t-oddeven.c t-popcount.c t-pow.c t-powm.c t-powm_ui.c t-root.c \
+ t-scan.c t-set_f.c t-set_si.c t-set_str.c t-sizeinbase.c \
+ t-sqrtrem.c t-tdiv.c t-tdiv_ui.c
DIST_COMMON = Makefile.am Makefile.in
-SOURCES = bit.c convert.c dive.c dive_ui.c io.c logic.c reuse.c t-aorsmul.c t-bin.c t-cmp.c t-cmp_d.c t-cmp_si.c t-cong.c t-cong_2exp.c t-div_2exp.c t-divis.c t-divis_2exp.c t-fac_ui.c t-fdiv.c t-fdiv_ui.c t-fib_ui.c t-fits.c t-gcd.c t-get_si.c t-jac.c t-lcm.c t-lucnum_ui.c t-mul.c t-mul_i.c t-oddeven.c t-popcount.c t-pow.c t-powm.c t-powm_ui.c t-root.c t-scan.c t-set_f.c t-set_si.c t-set_str.c t-sizeinbase.c t-sqrtrem.c t-tdiv.c t-tdiv_ui.c
+SOURCES = bit.c convert.c dive.c dive_ui.c io.c logic.c reuse.c t-aorsmul.c t-bin.c t-cmp.c t-cmp_d.c t-cmp_si.c t-cong.c t-cong_2exp.c t-div_2exp.c t-divis.c t-divis_2exp.c t-fac_ui.c t-fdiv.c t-fdiv_ui.c t-fib_ui.c t-fits.c t-gcd.c t-get_si.c t-inp_str.c t-jac.c t-lcm.c t-lucnum_ui.c t-mul.c t-mul_i.c t-oddeven.c t-popcount.c t-pow.c t-powm.c t-powm_ui.c t-root.c t-scan.c t-set_f.c t-set_si.c t-set_str.c t-sizeinbase.c t-sqrtrem.c t-tdiv.c t-tdiv_ui.c
all: all-am
@@ -530,6 +539,9 @@ t-gcd$(EXEEXT): $(t_gcd_OBJECTS) $(t_gcd_DEPENDENCIES)
t-get_si$(EXEEXT): $(t_get_si_OBJECTS) $(t_get_si_DEPENDENCIES)
@rm -f t-get_si$(EXEEXT)
$(LINK) $(t_get_si_LDFLAGS) $(t_get_si_OBJECTS) $(t_get_si_LDADD) $(LIBS)
+t-inp_str$(EXEEXT): $(t_inp_str_OBJECTS) $(t_inp_str_DEPENDENCIES)
+ @rm -f t-inp_str$(EXEEXT)
+ $(LINK) $(t_inp_str_LDFLAGS) $(t_inp_str_OBJECTS) $(t_inp_str_LDADD) $(LIBS)
t-jac$(EXEEXT): $(t_jac_OBJECTS) $(t_jac_DEPENDENCIES)
@rm -f t-jac$(EXEEXT)
$(LINK) $(t_jac_LDFLAGS) $(t_jac_OBJECTS) $(t_jac_LDADD) $(LIBS)
@@ -666,6 +678,8 @@ t-gcd_.c: t-gcd.c $(ANSI2KNR)
$(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) `if test -f $(srcdir)/t-gcd.c; then echo $(srcdir)/t-gcd.c; else echo t-gcd.c; fi` | sed 's/^# \([0-9]\)/#line \1/' | $(ANSI2KNR) > t-gcd_.c || rm -f t-gcd_.c
t-get_si_.c: t-get_si.c $(ANSI2KNR)
$(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) `if test -f $(srcdir)/t-get_si.c; then echo $(srcdir)/t-get_si.c; else echo t-get_si.c; fi` | sed 's/^# \([0-9]\)/#line \1/' | $(ANSI2KNR) > t-get_si_.c || rm -f t-get_si_.c
+t-inp_str_.c: t-inp_str.c $(ANSI2KNR)
+ $(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) `if test -f $(srcdir)/t-inp_str.c; then echo $(srcdir)/t-inp_str.c; else echo t-inp_str.c; fi` | sed 's/^# \([0-9]\)/#line \1/' | $(ANSI2KNR) > t-inp_str_.c || rm -f t-inp_str_.c
t-jac_.c: t-jac.c $(ANSI2KNR)
$(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) `if test -f $(srcdir)/t-jac.c; then echo $(srcdir)/t-jac.c; else echo t-jac.c; fi` | sed 's/^# \([0-9]\)/#line \1/' | $(ANSI2KNR) > t-jac_.c || rm -f t-jac_.c
t-lcm_.c: t-lcm.c $(ANSI2KNR)
@@ -715,17 +729,17 @@ t-div_2exp_.lo t-divis_.$(OBJEXT) t-divis_.lo t-divis_2exp_.$(OBJEXT) \
t-divis_2exp_.lo t-fac_ui_.$(OBJEXT) t-fac_ui_.lo t-fdiv_.$(OBJEXT) \
t-fdiv_.lo t-fdiv_ui_.$(OBJEXT) t-fdiv_ui_.lo t-fib_ui_.$(OBJEXT) \
t-fib_ui_.lo t-fits_.$(OBJEXT) t-fits_.lo t-gcd_.$(OBJEXT) t-gcd_.lo \
-t-get_si_.$(OBJEXT) t-get_si_.lo t-jac_.$(OBJEXT) t-jac_.lo \
-t-lcm_.$(OBJEXT) t-lcm_.lo t-lucnum_ui_.$(OBJEXT) t-lucnum_ui_.lo \
-t-mul_.$(OBJEXT) t-mul_.lo t-mul_i_.$(OBJEXT) t-mul_i_.lo \
-t-oddeven_.$(OBJEXT) t-oddeven_.lo t-popcount_.$(OBJEXT) t-popcount_.lo \
-t-pow_.$(OBJEXT) t-pow_.lo t-powm_.$(OBJEXT) t-powm_.lo \
-t-powm_ui_.$(OBJEXT) t-powm_ui_.lo t-root_.$(OBJEXT) t-root_.lo \
-t-scan_.$(OBJEXT) t-scan_.lo t-set_f_.$(OBJEXT) t-set_f_.lo \
-t-set_si_.$(OBJEXT) t-set_si_.lo t-set_str_.$(OBJEXT) t-set_str_.lo \
-t-sizeinbase_.$(OBJEXT) t-sizeinbase_.lo t-sqrtrem_.$(OBJEXT) \
-t-sqrtrem_.lo t-tdiv_.$(OBJEXT) t-tdiv_.lo t-tdiv_ui_.$(OBJEXT) \
-t-tdiv_ui_.lo : $(ANSI2KNR)
+t-get_si_.$(OBJEXT) t-get_si_.lo t-inp_str_.$(OBJEXT) t-inp_str_.lo \
+t-jac_.$(OBJEXT) t-jac_.lo t-lcm_.$(OBJEXT) t-lcm_.lo \
+t-lucnum_ui_.$(OBJEXT) t-lucnum_ui_.lo t-mul_.$(OBJEXT) t-mul_.lo \
+t-mul_i_.$(OBJEXT) t-mul_i_.lo t-oddeven_.$(OBJEXT) t-oddeven_.lo \
+t-popcount_.$(OBJEXT) t-popcount_.lo t-pow_.$(OBJEXT) t-pow_.lo \
+t-powm_.$(OBJEXT) t-powm_.lo t-powm_ui_.$(OBJEXT) t-powm_ui_.lo \
+t-root_.$(OBJEXT) t-root_.lo t-scan_.$(OBJEXT) t-scan_.lo \
+t-set_f_.$(OBJEXT) t-set_f_.lo t-set_si_.$(OBJEXT) t-set_si_.lo \
+t-set_str_.$(OBJEXT) t-set_str_.lo t-sizeinbase_.$(OBJEXT) \
+t-sizeinbase_.lo t-sqrtrem_.$(OBJEXT) t-sqrtrem_.lo t-tdiv_.$(OBJEXT) \
+t-tdiv_.lo t-tdiv_ui_.$(OBJEXT) t-tdiv_ui_.lo : $(ANSI2KNR)
uninstall-info-am:
tags: TAGS