IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 30, 2006, 4:54:35 PM (20 years ago)
Author:
jhoblitt
Message:

disable all non-tap tests and stop distributing "verified" directories

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/math/Makefile.am

    r7998 r8718  
    1 AM_CPPFLAGS = $(SRCINC) $(PSLIB_CFLAGS)
    2 AM_LDFLAGS = $(top_builddir)/src/libpslib.la $(PSLIB_LIBS)
     1AM_CPPFLAGS = $(SRCINC) -I$(top_srcdir)/test/tap/src $(PSLIB_CFLAGS)
     2AM_LDFLAGS = \
     3        $(top_builddir)/src/libpslib.la  \
     4        $(top_builddir)/test/tap/src/libtap.la \
     5        $(PSLIB_LIBS)
    36
    4 TESTS = \
    5     tst_psFunc01 \
    6     tst_psHist00 \
    7     tst_psHist01 \
    8     tst_psHist02 \
    9     tst_psHist03 \
    10     tst_psMathUtils \
    11     tst_psMatrix01 \
    12     tst_psMatrix02 \
    13     tst_psMatrix03 \
    14     tst_psMatrix04 \
    15     tst_psMatrix05 \
    16     tst_psMatrix06 \
    17     tst_psMatrix07 \
    18     tst_psMatrixVectorArithmetic01 \
    19     tst_psMatrixVectorArithmetic02 \
    20     tst_psMatrixVectorArithmetic03 \
    21     tst_psMatrixVectorArithmetic04 \
    22     tst_psMinimizePowell \
    23     tst_psMinimizeLMM \
    24     tst_psStats00 \
    25     tst_psStats01 \
    26     tst_psStats02 \
    27     tst_psStats03 \
    28     tst_psStats05 \
    29     tst_psStats06 \
    30     tst_psStats07 \
    31     tst_psStats08 \
    32     tst_psStats09 \
    33     tst_psSpline1D \
    34     tst_psRandom \
    35     tst_psPolynomial \
    36     tst_psPolynomialEval1D \
    37     tst_psPolynomialEval2D \
    38     tst_psPolynomialEval3D \
    39     tst_psPolynomialEval4D \
    40     tst_psPolyFit1D \
    41     tst_psPolyFit2D \
    42     tst_psPolyFit3D \
    43     tst_psPolyFit4D
     7check_PROGRAMS =
    448
    45 tst_psFunc01_SOURCES =  tst_psFunc01.c
    46 tst_psHist00_SOURCES =  tst_psHist00.c
    47 tst_psHist01_SOURCES =  tst_psHist01.c
    48 tst_psHist02_SOURCES =  tst_psHist02.c
    49 tst_psHist03_SOURCES =  tst_psHist03.c
    50 tst_psMathUtils_SOURCES =  tst_psMathUtils.c
    51 tst_psMatrix01_SOURCES =  tst_psMatrix01.c
    52 tst_psMatrix02_SOURCES =  tst_psMatrix02.c
    53 tst_psMatrix03_SOURCES =  tst_psMatrix03.c
    54 tst_psMatrix04_SOURCES =  tst_psMatrix04.c
    55 tst_psMatrix05_SOURCES =  tst_psMatrix05.c
    56 tst_psMatrix06_SOURCES =  tst_psMatrix06.c
    57 tst_psMatrix07_SOURCES =  tst_psMatrix07.c
    58 tst_psMatrixVectorArithmetic01_SOURCES =  tst_psMatrixVectorArithmetic01.c
    59 tst_psMatrixVectorArithmetic02_SOURCES =  tst_psMatrixVectorArithmetic02.c
    60 tst_psMatrixVectorArithmetic03_SOURCES =  tst_psMatrixVectorArithmetic03.c
    61 tst_psMatrixVectorArithmetic04_SOURCES =  tst_psMatrixVectorArithmetic04.c
    62 tst_psMinimizePowell_SOURCES = tst_psMinimizePowell.c
    63 tst_psMinimizeLMM_SOURCES = tst_psMinimizeLMM.c
    64 tst_psStats00_SOURCES =  tst_psStats00.c
    65 tst_psStats01_SOURCES =  tst_psStats01.c
    66 tst_psStats02_SOURCES =  tst_psStats02.c
    67 tst_psStats03_SOURCES =  tst_psStats03.c
    68 tst_psStats05_SOURCES =  tst_psStats05.c
    69 tst_psStats06_SOURCES =  tst_psStats06.c
    70 tst_psStats07_SOURCES =  tst_psStats07.c
    71 tst_psStats08_SOURCES =  tst_psStats08.c
    72 tst_psStats09_SOURCES =  tst_psStats09.c
    73 tst_psRandom_SOURCES =  tst_psRandom.c
    74 tst_psPolynomial_SOURCES = tst_psPolynomial.c
    75 tst_psPolynomialEval1D_SOURCES = tst_psPolynomialEval1D.c
    76 tst_psPolynomialEval2D_SOURCES = tst_psPolynomialEval2D.c
    77 tst_psPolynomialEval3D_SOURCES = tst_psPolynomialEval3D.c
    78 tst_psPolynomialEval4D_SOURCES = tst_psPolynomialEval4D.c
    79 tst_psPolyFit1D_SOURCES = tst_psPolyFit1D.c
    80 tst_psPolyFit2D_SOURCES = tst_psPolyFit2D.c
    81 tst_psPolyFit3D_SOURCES = tst_psPolyFit3D.c
    82 tst_psPolyFit4D_SOURCES = tst_psPolyFit4D.c
     9CLEANFILES = $(check_DATA) temp/* seed_msglog1.txt core core.* *~ *.bb *.bbg *.da gmon.out
    8310
    84 check_DATA =
    85 check_PROGRAMS = $(TESTS)
    86 TESTS_ENVIRONMENT = perl $(top_srcdir)/test/runTest -verified=$(srcdir)/verified
    87 EXTRA_DIST = verified
    88 CLEANFILES = $(TESTS) $(check_DATA) temp/* seed_msglog1.txt core core.* *~ *.bb *.bbg *.da gmon.out
    89 tests: $(check_DATA) $(TESTS)
    9011test: check
    91 
    92 
    93 
    94 
Note: See TracChangeset for help on using the changeset viewer.