/sqlite3cc

To get this branch, use:
bzr branch http://bzr.ed.am/sqlite3cc

« back to all changes in this revision

Viewing changes to test/Makefile.in

  • Committer: edam
  • Date: 2010-02-07 15:28:23 UTC
  • Revision ID: edam@waxworlds.org-20100207152823-42k206h6gwy7vla4
- fixed .am files so the library gets built!

Show diffs side-by-side

added added

removed removed

36
36
build_triplet = @build@
37
37
host_triplet = @host@
38
38
check_PROGRAMS = test-main$(EXEEXT)
39
 
TESTS = test-main$(EXEEXT)
40
39
subdir = test
41
40
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
42
41
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
52
51
CONFIG_CLEAN_VPATH_FILES =
53
52
am_test_main_OBJECTS = test-main.$(OBJEXT)
54
53
test_main_OBJECTS = $(am_test_main_OBJECTS)
55
 
test_main_DEPENDENCIES = ../src/libsqlite3cc.la
 
54
test_main_DEPENDENCIES =
56
55
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
57
56
depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp
58
57
am__depfiles_maybe = depfiles
70
69
DIST_SOURCES = $(test_main_SOURCES)
71
70
ETAGS = etags
72
71
CTAGS = ctags
73
 
am__tty_colors = \
74
 
red=; grn=; lgn=; blu=; std=
75
72
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
76
73
ACLOCAL = @ACLOCAL@
77
74
AMTAR = @AMTAR@
84
81
CCDEPMODE = @CCDEPMODE@
85
82
CFLAGS = @CFLAGS@
86
83
CPP = @CPP@
87
 
CPPFLAGS = -I$(top_srcdir)/include
 
84
CPPFLAGS = @CPPFLAGS@
88
85
CXX = @CXX@
89
86
CXXCPP = @CXXCPP@
90
87
CXXDEPMODE = @CXXDEPMODE@
110
107
LDFLAGS = @LDFLAGS@
111
108
LIBOBJS = @LIBOBJS@
112
109
LIBS = @LIBS@
113
 
LIBSQLITE3CC_INTERFACE = @LIBSQLITE3CC_INTERFACE@
114
110
LIBTOOL = @LIBTOOL@
115
111
LIPO = @LIPO@
116
112
LN_S = @LN_S@
190
186
top_build_prefix = @top_build_prefix@
191
187
top_builddir = @top_builddir@
192
188
top_srcdir = @top_srcdir@
193
 
test_main_SOURCES = \
194
 
        test-main.cc
195
 
 
196
 
test_main_LDADD = \
197
 
        ../src/libsqlite3cc.la \
198
 
        -lboost_filesystem-mt
199
 
 
 
189
AM_CPPFLAGS = -I$(top_srcdir)/include
 
190
test_main_SOURCES = test-main.cc
 
191
test_main_LDADD = -L$(top_srcdir)/src -lsqlite3cc
200
192
all: all-am
201
193
 
202
194
.SUFFIXES:
331
323
distclean-tags:
332
324
        -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
333
325
 
334
 
check-TESTS: $(TESTS)
335
 
        @failed=0; all=0; xfail=0; xpass=0; skip=0; \
336
 
        srcdir=$(srcdir); export srcdir; \
337
 
        list=' $(TESTS) '; \
338
 
        $(am__tty_colors); \
339
 
        if test -n "$$list"; then \
340
 
          for tst in $$list; do \
341
 
            if test -f ./$$tst; then dir=./; \
342
 
            elif test -f $$tst; then dir=; \
343
 
            else dir="$(srcdir)/"; fi; \
344
 
            if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
345
 
              all=`expr $$all + 1`; \
346
 
              case " $(XFAIL_TESTS) " in \
347
 
              *[\ \     ]$$tst[\ \      ]*) \
348
 
                xpass=`expr $$xpass + 1`; \
349
 
                failed=`expr $$failed + 1`; \
350
 
                col=$$red; res=XPASS; \
351
 
              ;; \
352
 
              *) \
353
 
                col=$$grn; res=PASS; \
354
 
              ;; \
355
 
              esac; \
356
 
            elif test $$? -ne 77; then \
357
 
              all=`expr $$all + 1`; \
358
 
              case " $(XFAIL_TESTS) " in \
359
 
              *[\ \     ]$$tst[\ \      ]*) \
360
 
                xfail=`expr $$xfail + 1`; \
361
 
                col=$$lgn; res=XFAIL; \
362
 
              ;; \
363
 
              *) \
364
 
                failed=`expr $$failed + 1`; \
365
 
                col=$$red; res=FAIL; \
366
 
              ;; \
367
 
              esac; \
368
 
            else \
369
 
              skip=`expr $$skip + 1`; \
370
 
              col=$$blu; res=SKIP; \
371
 
            fi; \
372
 
            echo "$${col}$$res$${std}: $$tst"; \
373
 
          done; \
374
 
          if test "$$all" -eq 1; then \
375
 
            tests="test"; \
376
 
            All=""; \
377
 
          else \
378
 
            tests="tests"; \
379
 
            All="All "; \
380
 
          fi; \
381
 
          if test "$$failed" -eq 0; then \
382
 
            if test "$$xfail" -eq 0; then \
383
 
              banner="$$All$$all $$tests passed"; \
384
 
            else \
385
 
              if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \
386
 
              banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \
387
 
            fi; \
388
 
          else \
389
 
            if test "$$xpass" -eq 0; then \
390
 
              banner="$$failed of $$all $$tests failed"; \
391
 
            else \
392
 
              if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \
393
 
              banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \
394
 
            fi; \
395
 
          fi; \
396
 
          dashes="$$banner"; \
397
 
          skipped=""; \
398
 
          if test "$$skip" -ne 0; then \
399
 
            if test "$$skip" -eq 1; then \
400
 
              skipped="($$skip test was not run)"; \
401
 
            else \
402
 
              skipped="($$skip tests were not run)"; \
403
 
            fi; \
404
 
            test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
405
 
              dashes="$$skipped"; \
406
 
          fi; \
407
 
          report=""; \
408
 
          if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \
409
 
            report="Please report to $(PACKAGE_BUGREPORT)"; \
410
 
            test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
411
 
              dashes="$$report"; \
412
 
          fi; \
413
 
          dashes=`echo "$$dashes" | sed s/./=/g`; \
414
 
          if test "$$failed" -eq 0; then \
415
 
            echo "$$grn$$dashes"; \
416
 
          else \
417
 
            echo "$$red$$dashes"; \
418
 
          fi; \
419
 
          echo "$$banner"; \
420
 
          test -z "$$skipped" || echo "$$skipped"; \
421
 
          test -z "$$report" || echo "$$report"; \
422
 
          echo "$$dashes$$std"; \
423
 
          test "$$failed" -eq 0; \
424
 
        else :; fi
425
 
 
426
326
distdir: $(DISTFILES)
427
327
        @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
428
328
        topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
455
355
        done
456
356
check-am: all-am
457
357
        $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS)
458
 
        $(MAKE) $(AM_MAKEFLAGS) check-TESTS
459
358
check: check-am
460
359
all-am: Makefile
461
360
installdirs:
557
456
 
558
457
.MAKE: check-am install-am install-strip
559
458
 
560
 
.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \
 
459
.PHONY: CTAGS GTAGS all all-am check check-am clean \
561
460
        clean-checkPROGRAMS clean-generic clean-libtool ctags \
562
461
        distclean distclean-compile distclean-generic \
563
462
        distclean-libtool distclean-tags distdir dvi dvi-am html \