Changeset 4550
- Timestamp:
- Jul 13, 2005, 1:14:59 AM (21 years ago)
- Location:
- trunk/psLib/test
- Files:
-
- 4 edited
-
astro/Makefile.am (modified) (2 diffs)
-
db/tst_psDB.c (modified) (2 diffs)
-
fits/tst_psFits.c (modified) (2 diffs)
-
math/Makefile.am (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/test/astro/Makefile.am
r4547 r4550 5 5 6 6 TESTS = \ 7 tst_psCoord \ 8 tst_psCoord01 \ 7 tst_psCoord01 \ 9 8 tst_psTime_01 \ 10 9 tst_psTime_02 \ 11 10 tst_psTime_03 \ 12 11 tst_psTime_04 12 # tst_psCoord 13 13 14 14 tst_psTime_01_SOURCES = tst_psTime_01.c … … 32 32 33 33 EXTRA_DIST = data verified 34 EXTRA_PROGRAMS = tst_psCoord 34 35 35 36 tests: $(check_DATA) $(TESTS) -
trunk/psLib/test/db/tst_psDB.c
r4547 r4550 9 9 * @author Aaron Culliney, MHPCC 10 10 * 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 $ 13 13 * 14 14 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 1600 1600 return 3; 1601 1601 } 1602 if(meta->list-> n!= 6) {1602 if(meta->list->size != 6) { 1603 1603 psError(PS_ERR_UNKNOWN,true,"Number of cols = %d not as expected %d", 1604 meta->list-> n,6);1604 meta->list->size,6); 1605 1605 psDBDropTable(dbh,table); 1606 1606 psDBCleanup(dbh); -
trunk/psLib/test/fits/tst_psFits.c
r4547 r4550 6 6 * @author Robert DeSonia, MHPCC 7 7 * 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 $ 10 10 * 11 11 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 650 650 } 651 651 652 if (header->list-> n < 1 || header->list->n != header2->list->n) {652 if (header->list->size < 1 || header->list->size != header2->list->size) { 653 653 psError(PS_ERR_UNKNOWN, true, 654 654 "Reading the header given a NULL input psMetadata differed " -
trunk/psLib/test/math/Makefile.am
r4547 r4550 30 30 tst_psMatrixVectorArithmetic03 \ 31 31 tst_psMatrixVectorArithmetic04 \ 32 tst_psMinimize00 \33 tst_psMinimize01 \34 tst_psMinimize02 \35 tst_psMinimize03 \36 32 tst_psMinimize04 \ 37 33 tst_psMinimize04_F32 \ … … 52 48 tst_psStats09 \ 53 49 tst_psRandom 50 # tst_psMinimize00 \ 51 # tst_psMinimize01 \ 52 # tst_psMinimize02 \ 53 # tst_psMinimize03 54 54 55 55 tst_psFunc00_SOURCES = tst_psFunc00.c … … 109 109 110 110 EXTRA_DIST = verified 111 EXTRA_PROGRAMS = tst_psMinimize00 tst_psMinimize01 tst_psMinimize02 tst_psMinimize03 111 112 112 113 CLEANFILES = $(TESTS) $(check_DATA)
Note:
See TracChangeset
for help on using the changeset viewer.
