IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 4550


Ignore:
Timestamp:
Jul 13, 2005, 1:14:59 AM (21 years ago)
Author:
desonia
Message:

file reorganization.

Location:
trunk/psLib/test
Files:
4 edited

Legend:

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

    r4547 r4550  
    55
    66TESTS =  \
    7         tst_psCoord \
    8     tst_psCoord01 \
     7        tst_psCoord01 \
    98        tst_psTime_01 \
    109        tst_psTime_02 \
    1110        tst_psTime_03 \
    1211        tst_psTime_04
     12#       tst_psCoord
    1313
    1414tst_psTime_01_SOURCES = tst_psTime_01.c
     
    3232
    3333EXTRA_DIST = data verified
     34EXTRA_PROGRAMS = tst_psCoord
    3435
    3536tests: $(check_DATA) $(TESTS)
  • trunk/psLib/test/db/tst_psDB.c

    r4547 r4550  
    99 *  @author Aaron Culliney, MHPCC
    1010 *
    11  *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2005-07-13 02:46:59 $
     11 *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2005-07-13 11:14:58 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    16001600        return 3;
    16011601    }
    1602     if(meta->list->n != 6) {
     1602    if(meta->list->size != 6) {
    16031603        psError(PS_ERR_UNKNOWN,true,"Number of cols = %d not as expected %d",
    1604                 meta->list->n,6);
     1604                meta->list->size,6);
    16051605        psDBDropTable(dbh,table);
    16061606        psDBCleanup(dbh);
  • trunk/psLib/test/fits/tst_psFits.c

    r4547 r4550  
    66*  @author Robert DeSonia, MHPCC
    77*
    8 *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
    9 *  @date $Date: 2005-07-13 02:47:00 $
     8*  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
     9*  @date $Date: 2005-07-13 11:14:59 $
    1010*
    1111*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    650650        }
    651651
    652         if (header->list->n < 1 || header->list->n != header2->list->n) {
     652        if (header->list->size < 1 || header->list->size != header2->list->size) {
    653653            psError(PS_ERR_UNKNOWN, true,
    654654                    "Reading the header given a NULL input psMetadata differed "
  • trunk/psLib/test/math/Makefile.am

    r4547 r4550  
    3030        tst_psMatrixVectorArithmetic03 \
    3131        tst_psMatrixVectorArithmetic04 \
    32         tst_psMinimize00 \
    33         tst_psMinimize01 \
    34         tst_psMinimize02 \
    35         tst_psMinimize03 \
    3632        tst_psMinimize04 \
    3733        tst_psMinimize04_F32 \
     
    5248        tst_psStats09 \
    5349        tst_psRandom
     50#       tst_psMinimize00 \
     51#       tst_psMinimize01 \
     52#       tst_psMinimize02 \
     53#       tst_psMinimize03
    5454
    5555tst_psFunc00_SOURCES =  tst_psFunc00.c
     
    109109
    110110EXTRA_DIST = verified
     111EXTRA_PROGRAMS = tst_psMinimize00 tst_psMinimize01 tst_psMinimize02 tst_psMinimize03
    111112
    112113CLEANFILES = $(TESTS) $(check_DATA)
Note: See TracChangeset for help on using the changeset viewer.