IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 7773


Ignore:
Timestamp:
Jun 30, 2006, 4:51:40 PM (20 years ago)
Author:
jhoblitt
Message:

add tap_psVector libtap test driver example

Location:
trunk/psLib
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/autogen.sh

    r3833 r7773  
    8484$AUTOCONF || echo "$AUTOCONF failed"
    8585
     86# bypass taps bootstrap.sh
     87cd ./test/tap
     88$LIBTOOLIZE --copy --force || echo "$LIBTOOlIZE failed"
     89$ACLOCAL || echo "$ACLOCAL failed"
     90$AUTOHEADER || echo "$AUTOHEADER failed"
     91$AUTOMAKE --add-missing --force-missing --copy || echo "$AUTOMAKE failed"
     92$AUTOCONF || echo "$AUTOCONF failed"
    8693cd $ORIGDIR
    8794
  • trunk/psLib/configure.ac

    r7607 r7773  
    44AC_CONFIG_SRCDIR([pslib.pc.in])
    55AC_CANONICAL_TARGET
     6
     7dnl this enables the building of libtap
     8AC_CONFIG_SUBDIRS([test/tap])
    69
    710AM_INIT_AUTOMAKE([1.7 foreign dist-bzip2])
  • trunk/psLib/test/Makefile.am

    r7210 r7773  
    1 SUBDIRS = $(SRCDIRS)
     1SUBDIRS = tap $(SRCDIRS)
    22
    33EXTRA_DIST = runTest FullUnitTest
  • trunk/psLib/test/mathtypes/Makefile.am

    r7210 r7773  
    1111        tst_psVectorSort_02 \
    1212        tst_psVectorSort_03 \
    13         tst_psVectorSort_04
     13        tst_psVectorSort_04 \
     14        tap_psVector
    1415
    1516tst_psImage_SOURCES =  tst_psImage.c
     
    2122tst_psVectorSort_04_SOURCES =  tst_psVectorSort_04.c
    2223
    23 check_DATA =
     24
     25tap_psVector_CPPFLAGS   = $(AM_CPPFLAGS) -I$(top_srcdir)/test/tap/src
     26tap_psVector_LDFLAGS    = $(AM_LDFLAGS) $(top_builddir)/test/tap/src/libtap.la
     27
     28TESTS_ENVIRONMENT =     $(SHELL)
    2429
    2530check_PROGRAMS = $(TESTS)
    2631
    27 TESTS_ENVIRONMENT = perl $(top_srcdir)/test/runTest -verified=$(srcdir)/verified
     32#TESTS_ENVIRONMENT = perl $(top_srcdir)/test/runTest -verified=$(srcdir)/verified
    2833
    2934EXTRA_DIST = verified
Note: See TracChangeset for help on using the changeset viewer.