~ubuntu-branches/ubuntu/saucy/augeas/saucy-proposed

« back to all changes in this revision

Viewing changes to tests/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Nicolas Valcárcel Scerpella
  • Date: 2011-11-10 09:20:03 UTC
  • mto: (1.5.1) (19.1.11 precise)
  • mto: This revision was merged to the branch mainline in revision 22.
  • Revision ID: package-import@ubuntu.com-20111110092003-sb3z6bq97rlb96de
Tags: upstream-0.9.0
Import upstream version 0.9.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
build_triplet = @build@
44
44
host_triplet = @host@
45
45
check_PROGRAMS = fatest$(EXEEXT) test-xpath$(EXEEXT) \
46
 
        test-load$(EXEEXT) test-save$(EXEEXT) test-api$(EXEEXT)
 
46
        test-load$(EXEEXT) test-save$(EXEEXT) test-api$(EXEEXT) \
 
47
        test-run$(EXEEXT)
47
48
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
48
49
        $(top_srcdir)/Makefile.inc
49
50
subdir = tests
179
180
        memory.$(OBJEXT)
180
181
test_load_OBJECTS = $(am_test_load_OBJECTS)
181
182
test_load_DEPENDENCIES = $(top_builddir)/src/libaugeas.la $(GNULIB)
 
183
am_test_run_OBJECTS = test-run.$(OBJEXT) cutest.$(OBJEXT) \
 
184
        memory.$(OBJEXT)
 
185
test_run_OBJECTS = $(am_test_run_OBJECTS)
 
186
test_run_DEPENDENCIES = $(top_builddir)/src/libaugeas.la $(GNULIB)
182
187
am_test_save_OBJECTS = test-save.$(OBJEXT) cutest.$(OBJEXT) \
183
188
        memory.$(OBJEXT)
184
189
test_save_OBJECTS = $(am_test_save_OBJECTS)
214
219
am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
215
220
am__v_GEN_0 = @echo "  GEN   " $@;
216
221
SOURCES = $(fatest_SOURCES) $(test_api_SOURCES) $(test_load_SOURCES) \
217
 
        $(test_save_SOURCES) $(test_xpath_SOURCES)
 
222
        $(test_run_SOURCES) $(test_save_SOURCES) $(test_xpath_SOURCES)
218
223
DIST_SOURCES = $(fatest_SOURCES) $(test_api_SOURCES) \
219
 
        $(test_load_SOURCES) $(test_save_SOURCES) \
 
224
        $(test_load_SOURCES) $(test_run_SOURCES) $(test_save_SOURCES) \
220
225
        $(test_xpath_SOURCES)
221
226
ETAGS = etags
222
227
CTAGS = ctags
333
338
CYGPATH_W = @CYGPATH_W@
334
339
DEFS = @DEFS@
335
340
DEPDIR = @DEPDIR@
 
341
DLLTOOL = @DLLTOOL@
336
342
DSYMUTIL = @DSYMUTIL@
337
343
DUMPBIN = @DUMPBIN@
338
344
ECHO_C = @ECHO_C@
790
796
LTLIBPTH = @LTLIBPTH@
791
797
LTLIBTHREAD = @LTLIBTHREAD@
792
798
MAKEINFO = @MAKEINFO@
 
799
MANIFEST_TOOL = @MANIFEST_TOOL@
793
800
MKDIR_P = @MKDIR_P@
794
801
ND_FORMAT = @ND_FORMAT@
795
802
ND_PROG = @ND_PROG@
995
1002
abs_srcdir = @abs_srcdir@
996
1003
abs_top_builddir = @abs_top_builddir@
997
1004
abs_top_srcdir = @abs_top_srcdir@
 
1005
ac_ct_AR = @ac_ct_AR@
998
1006
ac_ct_CC = @ac_ct_CC@
999
1007
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
1000
1008
am__include = @am__include@
1117
1125
  lens-postfix_access.sh \
1118
1126
  lens-postfix_main.sh          \
1119
1127
  lens-postfix_master.sh        \
 
1128
  lens-properties.sh    \
1120
1129
  lens-puppet.sh                \
1121
1130
  lens-puppetfileserver.sh              \
1122
1131
  lens-resolv.sh                \
1153
1162
  test-interpreter.sh \
1154
1163
  $(lens_tests) \
1155
1164
  test-get.sh test-augtool.sh \
1156
 
  test-put-symlink.sh test-save-empty.sh test-mv.sh \
 
1165
  test-put-symlink.sh test-save-empty.sh \
1157
1166
  test-bug-1.sh test-idempotent.sh test-preserve.sh \
1158
1167
  test-events-saved.sh test-save-mode.sh test-unlink-error.sh \
1159
1168
  test-augtool-empty-line.sh test-augtool-modify-root.sh
1160
1169
 
1161
1170
EXTRA_DIST = \
1162
1171
  test-augtool root lens-test-1 \
1163
 
  $(check_SCRIPTS) $(wildcard modules/*.aug) xpath.tests
 
1172
  $(check_SCRIPTS) $(wildcard modules/*.aug) xpath.tests run.tests
1164
1173
 
1165
1174
noinst_SCRIPTS = $(check_SCRIPTS)
1166
1175
TESTS_ENVIRONMENT = \
1181
1190
test_save_LDADD = $(top_builddir)/src/libaugeas.la $(GNULIB)
1182
1191
test_api_SOURCES = test-api.c cutest.c cutest.h $(top_srcdir)/src/memory.c $(top_srcdir)/src/memory.h
1183
1192
test_api_LDADD = $(top_builddir)/src/libaugeas.la $(GNULIB)
 
1193
test_run_SOURCES = test-run.c cutest.c cutest.h $(top_srcdir)/src/memory.c $(top_srcdir)/src/memory.h
 
1194
test_run_LDADD = $(top_builddir)/src/libaugeas.la $(GNULIB)
1184
1195
all: all-am
1185
1196
 
1186
1197
.SUFFIXES:
1233
1244
test-load$(EXEEXT): $(test_load_OBJECTS) $(test_load_DEPENDENCIES) 
1234
1245
        @rm -f test-load$(EXEEXT)
1235
1246
        $(AM_V_CCLD)$(LINK) $(test_load_OBJECTS) $(test_load_LDADD) $(LIBS)
 
1247
test-run$(EXEEXT): $(test_run_OBJECTS) $(test_run_DEPENDENCIES) 
 
1248
        @rm -f test-run$(EXEEXT)
 
1249
        $(AM_V_CCLD)$(LINK) $(test_run_OBJECTS) $(test_run_LDADD) $(LIBS)
1236
1250
test-save$(EXEEXT): $(test_save_OBJECTS) $(test_save_DEPENDENCIES) 
1237
1251
        @rm -f test-save$(EXEEXT)
1238
1252
        $(AM_V_CCLD)$(LINK) $(test_save_OBJECTS) $(test_save_LDADD) $(LIBS)
1251
1265
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/memory.Po@am__quote@
1252
1266
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-api.Po@am__quote@
1253
1267
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-load.Po@am__quote@
 
1268
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-run.Po@am__quote@
1254
1269
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-save.Po@am__quote@
1255
1270
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-xpath.Po@am__quote@
1256
1271
 
1632
1647
        @p='lens-postfix_main.sh'; $(am__check_pre) $(LOG_COMPILE) "$$tst" $(am__check_post)
1633
1648
lens-postfix_master.sh.log: lens-postfix_master.sh
1634
1649
        @p='lens-postfix_master.sh'; $(am__check_pre) $(LOG_COMPILE) "$$tst" $(am__check_post)
 
1650
lens-properties.sh.log: lens-properties.sh
 
1651
        @p='lens-properties.sh'; $(am__check_pre) $(LOG_COMPILE) "$$tst" $(am__check_post)
1635
1652
lens-puppet.sh.log: lens-puppet.sh
1636
1653
        @p='lens-puppet.sh'; $(am__check_pre) $(LOG_COMPILE) "$$tst" $(am__check_post)
1637
1654
lens-puppetfileserver.sh.log: lens-puppetfileserver.sh
1696
1713
        @p='test-put-symlink.sh'; $(am__check_pre) $(LOG_COMPILE) "$$tst" $(am__check_post)
1697
1714
test-save-empty.sh.log: test-save-empty.sh
1698
1715
        @p='test-save-empty.sh'; $(am__check_pre) $(LOG_COMPILE) "$$tst" $(am__check_post)
1699
 
test-mv.sh.log: test-mv.sh
1700
 
        @p='test-mv.sh'; $(am__check_pre) $(LOG_COMPILE) "$$tst" $(am__check_post)
1701
1716
test-bug-1.sh.log: test-bug-1.sh
1702
1717
        @p='test-bug-1.sh'; $(am__check_pre) $(LOG_COMPILE) "$$tst" $(am__check_post)
1703
1718
test-idempotent.sh.log: test-idempotent.sh
1724
1739
        @p='test-save$(EXEEXT)'; $(am__check_pre) $(LOG_COMPILE) "$$tst" $(am__check_post)
1725
1740
test-api.log: test-api$(EXEEXT)
1726
1741
        @p='test-api$(EXEEXT)'; $(am__check_pre) $(LOG_COMPILE) "$$tst" $(am__check_post)
 
1742
test-run.log: test-run$(EXEEXT)
 
1743
        @p='test-run$(EXEEXT)'; $(am__check_pre) $(LOG_COMPILE) "$$tst" $(am__check_post)
1727
1744
.test.log:
1728
1745
        @p='$<'; $(am__check_pre) $(TEST_LOG_COMPILE) "$$tst" $(am__check_post)
1729
1746
@am__EXEEXT_TRUE@.test$(EXEEXT).log:
1884
1901
        recheck recheck-html tags uninstall uninstall-am
1885
1902
 
1886
1903
 
1887
 
valgrind: fatest
 
1904
valgrind:
 
1905
        make check \
 
1906
          VALGRIND="libtool --mode=execute valgrind --quiet --leak-check=full" \
 
1907
          AUGPARSE=$(abs_top_builddir)/src/augparse \
 
1908
          AUGTOOL=$(abs_top_builddir)/src/augtool
1888
1909
        libtool --mode=execute valgrind --quiet --leak-check=full ./fatest
1889
1910
 
1890
1911
# Ensure that the above list stays up to date: