• unknown's avatar
    WL#3206 (Adding unit tests): · 3f9e35d3
    unknown authored
    Moving mytap library into unittest/
    Adding 'test' target to make and run unit tests.
    Minor fixes.
    
    
    unittest/mytap/Doxyfile:
      mvdir
    unittest/mytap/t/basic.t.c:
      mvdir
    unittest/mytap/tap.c:
      mvdir
    unittest/mytap/tap.h:
      mvdir
    Makefile.am:
      Correcting after moving mytap/
    configure.in:
      Correcting after moving mytap/
    unittest/Makefile.am:
      Adding 'test' target to build and execute unit tests.
    unittest/examples/Makefile.am:
      Correcting after moving mytap/
    unittest/mysys/Makefile.am:
      Correcting after moving mytap/
    unittest/mysys/bitmap.t.c:
      Adding copyright notice.
    unittest/mytap/Makefile.am:
      Correcting after moving mytap/
    unittest/mytap/t/Makefile.am:
      Correcting after moving mytap/
    unittest/mysys/base64.t.c:
      New BitKeeper file ``unittest/mysys/base64.t.c''
    3f9e35d3
Makefile.am 475 Bytes
AM_CPPFLAGS        = -I$(srcdir) -I$(top_builddir)/include
AM_CPPFLAGS       += -I$(top_builddir)/unittest/mytap

AM_LDFLAGS         = -L$(top_builddir)/unittest/mytap

AM_CFLAGS          = -W -Wall -ansi -pedantic

LDADD              = -lmytap

noinst_PROGRAMS    = simple.t skip.t todo.t skip_all.t no_plan.t

simple_t_SOURCES   = simple.t.c

skip_t_SOURCES     = skip.t.c

todo_t_SOURCES     = todo.t.c

skip_all_t_SOURCES = skip_all.t.c

no_plan_t_SOURCES  = no_plan.t.c