Changeset 3769
- Timestamp:
- Apr 26, 2005, 9:53:30 AM (21 years ago)
- Location:
- trunk/psLib
- Files:
-
- 22 edited
-
configure.ac (modified) (3 diffs)
-
pslib-config.in (modified) (2 diffs)
-
pslib.kdevelop.pcs (modified) ( previous)
-
pslib.kdevses (modified) (1 diff)
-
src/collections/psHash.c (modified) (1 diff)
-
src/collections/psMetadataIO.c (modified) (4 diffs)
-
src/dataIO/psFits.c (modified) (2 diffs)
-
src/dataManip/psFunctions.c (modified) (4 diffs)
-
src/dataManip/psStats.c (modified) (2 diffs)
-
src/fits/psFits.c (modified) (2 diffs)
-
src/math/psPolynomial.c (modified) (4 diffs)
-
src/math/psSpline.c (modified) (4 diffs)
-
src/math/psStats.c (modified) (2 diffs)
-
src/psTest.c (modified) (1 diff)
-
src/types/psHash.c (modified) (1 diff)
-
src/types/psMetadataConfig.c (modified) (4 diffs)
-
src/xml/psXML.c (modified) (4 diffs)
-
test/astronomy/tst_psAstrometry01.c (modified) (3 diffs)
-
test/dataManip/verified/tst_psFunc00.stderr (modified) (8 diffs)
-
test/image/verified/tst_psImageManip.stderr (modified) (2 diffs)
-
test/psTest.c (modified) (1 diff)
-
test/runTest (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/configure.ac
r3765 r3769 1 AC_INIT([pslib],[0.6 ],[http://www.pan-starrs.org/bugzilla])1 AC_INIT([pslib],[0.6.0],[http://www.pan-starrs.org/bugzilla]) 2 2 AC_CANONICAL_TARGET 3 3 AM_CONFIG_HEADER(src/config.h) … … 42 42 fi 43 43 44 AC_LANG_PUSH(Fortran 77)45 AC_PROG_F77 44 AC_LANG_PUSH(Fortran) 45 AC_PROG_F77(gfortran g95 g90 g77 f95 f90 f77) 46 46 AC_F77_WRAPPERS 47 AC_LANG_POP(Fortran 77)47 AC_LANG_POP(Fortran) 48 48 49 49 AC_PROG_INSTALL … … 55 55 dnl Setup the info for psLib for pkg-config 56 56 PSLIB_CFLAGS="-I${includedir}" 57 PSLIB_LIBS="${FLIBS=}" 57 58 58 59 dnl ----------------- MYSQL options -------------------- -
trunk/psLib/pslib-config.in
r3598 r3769 57 57 58 58 --cflags) 59 echo @PSLIB_CFLAGS@ 59 echo @PSLIB_CFLAGS@ 60 60 ;; 61 61 … … 63 63 echo -L@libdir@ -lpslib @PSLIB_LIBS@ 64 64 ;; 65 65 66 66 --deps) 67 67 echo @PSLIB_LIBS@ -
trunk/psLib/pslib.kdevses
r3737 r3769 2 2 <!DOCTYPE KDevPrjSession> 3 3 <KDevPrjSession> 4 <DocsAndViews NumberOfDocuments=" 3" >5 <Doc0 NumberOfViews="1" URL="file:///home/desonia/panstarrs/psLib/src/ image/psImageManip.h" >6 <View0 line=" 22" Type="Source" />4 <DocsAndViews NumberOfDocuments="5" > 5 <Doc0 NumberOfViews="1" URL="file:///home/desonia/panstarrs/psLib/src/collections/psVector.h" > 6 <View0 line="145" Type="Source" /> 7 7 </Doc0> 8 <Doc1 NumberOfViews="1" URL="file:///home/desonia/panstarrs/psLib/src/ image/psImageManip.c" >9 <View0 line="1 173" Type="Source" />8 <Doc1 NumberOfViews="1" URL="file:///home/desonia/panstarrs/psLib/src/collections/Makefile.am" > 9 <View0 line="16" Type="Source" /> 10 10 </Doc1> 11 <Doc2 NumberOfViews="1" URL="file:///home/desonia/panstarrs/psLib/src/image/ psImage.h" >12 <View0 line="1 59" Type="Source" />11 <Doc2 NumberOfViews="1" URL="file:///home/desonia/panstarrs/psLib/src/image/Makefile.am" > 12 <View0 line="19" Type="Source" /> 13 13 </Doc2> 14 <Doc3 NumberOfViews="1" URL="file:///home/desonia/panstarrs/psLib/src/collections/psMetadata.c" > 15 <View0 line="196" Type="Source" /> 16 </Doc3> 17 <Doc4 NumberOfViews="1" URL="file:///home/desonia/panstarrs/psLib/configure.ac" > 18 <View0 line="25" Type="Source" /> 19 </Doc4> 14 20 </DocsAndViews> 15 21 <pluginList> -
trunk/psLib/src/collections/psHash.c
r3682 r3769 12 12 * @author Robert DeSonia, MHPCC 13 13 * 14 * @version $Revision: 1.1 4$ $Name: not supported by cvs2svn $15 * @date $Date: 2005-04- 07 20:27:41$14 * @version $Revision: 1.15 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2005-04-26 19:53:30 $ 16 16 * 17 17 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii -
trunk/psLib/src/collections/psMetadataIO.c
r3671 r3769 9 9 * @author Ross Harman, MHPCC 10 10 * 11 * @version $Revision: 1.2 4$ $Name: not supported by cvs2svn $12 * @date $Date: 2005-04- 06 01:12:58$11 * @version $Revision: 1.25 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2005-04-26 19:53:30 $ 13 13 * 14 14 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 750 750 751 751 // Copy XML strings to psStrings to avoid libxml2/psLib memory corruption problems 752 psTagName = psStringCopy( tagName);752 psTagName = psStringCopy((const char*)tagName); 753 753 754 754 // Metadata containter for housing element attributes used by other SAX events … … 774 774 775 775 // Copy XML strings to psStrings to avoid libxml2/psLib memory corruption problems 776 psAttName = psStringCopy( attName);777 psAttValue = psStringCopy( attValue);776 psAttName = psStringCopy((const char*)attName); 777 psAttValue = psStringCopy((const char*)attValue); 778 778 psHashAdd(htAtts, psAttName, psAttValue); 779 779 psFree(psAttName); … … 1082 1082 1083 1083 // Copy XML strings to psStrings to avoid libxml2/psLib memory corruption problems 1084 psEndTagName = psStringCopy( tagName);1084 psEndTagName = psStringCopy((const char*)tagName); 1085 1085 1086 1086 // Compare start and end tag names -
trunk/psLib/src/dataIO/psFits.c
r3682 r3769 7 7 * @author Robert DeSonia, MHPCC 8 8 * 9 * @version $Revision: 1.2 7$ $Name: not supported by cvs2svn $10 * @date $Date: 2005-04- 07 20:27:41$9 * @version $Revision: 1.28 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2005-04-26 19:53:30 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 1596 1596 1, // firstelem 1597 1597 table->n, // nelements 1598 col->data.S8,1598 (char*)col->data.S8, 1599 1599 &status); 1600 1600 break; -
trunk/psLib/src/dataManip/psFunctions.c
r3714 r3769 7 7 * polynomials. It also contains a Gaussian functions. 8 8 * 9 * @version $Revision: 1.9 8$ $Name: not supported by cvs2svn $10 * @date $Date: 2005-04- 19 04:16:02$9 * @version $Revision: 1.99 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2005-04-26 19:53:30 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 1959 1959 PS_PTR_CHECK_NULL(x, -6); 1960 1960 PS_PTR_CHECK_TYPE_EQUAL(x, bins, -3); 1961 psS8* strType;1961 char* strType; 1962 1962 1963 1963 switch (x->type.type) { … … 2069 2069 2070 2070 } else { 2071 psS8* strType;2071 char* strType; 2072 2072 PS_TYPE_NAME(strType,x->type.type); 2073 2073 psError(PS_ERR_BAD_PARAMETER_TYPE, … … 2163 2163 } 2164 2164 } else { 2165 psS8* strType;2165 char* strType; 2166 2166 PS_TYPE_NAME(strType,x->type.type); 2167 2167 psError(PS_ERR_BAD_PARAMETER_TYPE, -
trunk/psLib/src/dataManip/psStats.c
r3682 r3769 9 9 * @author GLG, MHPCC 10 10 * 11 * @version $Revision: 1.12 5$ $Name: not supported by cvs2svn $12 * @date $Date: 2005-04- 07 20:27:41$11 * @version $Revision: 1.126 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2005-04-26 19:53:30 $ 13 13 * 14 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 2184 2184 // do nothing 2185 2185 } else { 2186 psS8* strType;2186 char* strType; 2187 2187 PS_TYPE_NAME(strType, in->type.type); 2188 2188 psError(PS_ERR_BAD_PARAMETER_TYPE, true, -
trunk/psLib/src/fits/psFits.c
r3682 r3769 7 7 * @author Robert DeSonia, MHPCC 8 8 * 9 * @version $Revision: 1.2 7$ $Name: not supported by cvs2svn $10 * @date $Date: 2005-04- 07 20:27:41$9 * @version $Revision: 1.28 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2005-04-26 19:53:30 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 1596 1596 1, // firstelem 1597 1597 table->n, // nelements 1598 col->data.S8,1598 (char*)col->data.S8, 1599 1599 &status); 1600 1600 break; -
trunk/psLib/src/math/psPolynomial.c
r3714 r3769 7 7 * polynomials. It also contains a Gaussian functions. 8 8 * 9 * @version $Revision: 1.9 8$ $Name: not supported by cvs2svn $10 * @date $Date: 2005-04- 19 04:16:02$9 * @version $Revision: 1.99 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2005-04-26 19:53:30 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 1959 1959 PS_PTR_CHECK_NULL(x, -6); 1960 1960 PS_PTR_CHECK_TYPE_EQUAL(x, bins, -3); 1961 psS8* strType;1961 char* strType; 1962 1962 1963 1963 switch (x->type.type) { … … 2069 2069 2070 2070 } else { 2071 psS8* strType;2071 char* strType; 2072 2072 PS_TYPE_NAME(strType,x->type.type); 2073 2073 psError(PS_ERR_BAD_PARAMETER_TYPE, … … 2163 2163 } 2164 2164 } else { 2165 psS8* strType;2165 char* strType; 2166 2166 PS_TYPE_NAME(strType,x->type.type); 2167 2167 psError(PS_ERR_BAD_PARAMETER_TYPE, -
trunk/psLib/src/math/psSpline.c
r3714 r3769 7 7 * polynomials. It also contains a Gaussian functions. 8 8 * 9 * @version $Revision: 1.9 8$ $Name: not supported by cvs2svn $10 * @date $Date: 2005-04- 19 04:16:02$9 * @version $Revision: 1.99 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2005-04-26 19:53:30 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 1959 1959 PS_PTR_CHECK_NULL(x, -6); 1960 1960 PS_PTR_CHECK_TYPE_EQUAL(x, bins, -3); 1961 psS8* strType;1961 char* strType; 1962 1962 1963 1963 switch (x->type.type) { … … 2069 2069 2070 2070 } else { 2071 psS8* strType;2071 char* strType; 2072 2072 PS_TYPE_NAME(strType,x->type.type); 2073 2073 psError(PS_ERR_BAD_PARAMETER_TYPE, … … 2163 2163 } 2164 2164 } else { 2165 psS8* strType;2165 char* strType; 2166 2166 PS_TYPE_NAME(strType,x->type.type); 2167 2167 psError(PS_ERR_BAD_PARAMETER_TYPE, -
trunk/psLib/src/math/psStats.c
r3682 r3769 9 9 * @author GLG, MHPCC 10 10 * 11 * @version $Revision: 1.12 5$ $Name: not supported by cvs2svn $12 * @date $Date: 2005-04- 07 20:27:41$11 * @version $Revision: 1.126 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2005-04-26 19:53:30 $ 13 13 * 14 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 2184 2184 // do nothing 2185 2185 } else { 2186 psS8* strType;2186 char* strType; 2187 2187 PS_TYPE_NAME(strType, in->type.type); 2188 2188 psError(PS_ERR_BAD_PARAMETER_TYPE, true, -
trunk/psLib/src/psTest.c
r3233 r3769 278 278 fprintf( fp, "\n---> TESTPOINT FAILED (%s{%s} | %s)\n\n", packageName, testPointName, fileName); 279 279 } 280 } 280 fflush(fp); 281 } -
trunk/psLib/src/types/psHash.c
r3682 r3769 12 12 * @author Robert DeSonia, MHPCC 13 13 * 14 * @version $Revision: 1.1 4$ $Name: not supported by cvs2svn $15 * @date $Date: 2005-04- 07 20:27:41$14 * @version $Revision: 1.15 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2005-04-26 19:53:30 $ 16 16 * 17 17 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii -
trunk/psLib/src/types/psMetadataConfig.c
r3671 r3769 9 9 * @author Ross Harman, MHPCC 10 10 * 11 * @version $Revision: 1.2 4$ $Name: not supported by cvs2svn $12 * @date $Date: 2005-04- 06 01:12:58$11 * @version $Revision: 1.25 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2005-04-26 19:53:30 $ 13 13 * 14 14 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 750 750 751 751 // Copy XML strings to psStrings to avoid libxml2/psLib memory corruption problems 752 psTagName = psStringCopy( tagName);752 psTagName = psStringCopy((const char*)tagName); 753 753 754 754 // Metadata containter for housing element attributes used by other SAX events … … 774 774 775 775 // Copy XML strings to psStrings to avoid libxml2/psLib memory corruption problems 776 psAttName = psStringCopy( attName);777 psAttValue = psStringCopy( attValue);776 psAttName = psStringCopy((const char*)attName); 777 psAttValue = psStringCopy((const char*)attValue); 778 778 psHashAdd(htAtts, psAttName, psAttValue); 779 779 psFree(psAttName); … … 1082 1082 1083 1083 // Copy XML strings to psStrings to avoid libxml2/psLib memory corruption problems 1084 psEndTagName = psStringCopy( tagName);1084 psEndTagName = psStringCopy((const char*)tagName); 1085 1085 1086 1086 // Compare start and end tag names -
trunk/psLib/src/xml/psXML.c
r3671 r3769 9 9 * @author Ross Harman, MHPCC 10 10 * 11 * @version $Revision: 1.2 4$ $Name: not supported by cvs2svn $12 * @date $Date: 2005-04- 06 01:12:58$11 * @version $Revision: 1.25 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2005-04-26 19:53:30 $ 13 13 * 14 14 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 750 750 751 751 // Copy XML strings to psStrings to avoid libxml2/psLib memory corruption problems 752 psTagName = psStringCopy( tagName);752 psTagName = psStringCopy((const char*)tagName); 753 753 754 754 // Metadata containter for housing element attributes used by other SAX events … … 774 774 775 775 // Copy XML strings to psStrings to avoid libxml2/psLib memory corruption problems 776 psAttName = psStringCopy( attName);777 psAttValue = psStringCopy( attValue);776 psAttName = psStringCopy((const char*)attName); 777 psAttValue = psStringCopy((const char*)attValue); 778 778 psHashAdd(htAtts, psAttName, psAttValue); 779 779 psFree(psAttName); … … 1082 1082 1083 1083 // Copy XML strings to psStrings to avoid libxml2/psLib memory corruption problems 1084 psEndTagName = psStringCopy( tagName);1084 psEndTagName = psStringCopy((const char*)tagName); 1085 1085 1086 1086 // Compare start and end tag names -
trunk/psLib/test/astronomy/tst_psAstrometry01.c
r3716 r3769 5 5 * @author GLG, MHPCC 6 6 * 7 * @version $Revision: 1.2 4$ $Name: not supported by cvs2svn $8 * @date $Date: 2005-04- 19 07:00:20 $7 * @version $Revision: 1.25 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2005-04-26 19:53:30 $ 9 9 * 10 10 * XXX: Must test … … 809 809 // 810 810 // We set an arbitrary linear transformation. 811 // 811 // 812 812 transInit->x->coeff[0][0] = 1.0; 813 813 transInit->x->coeff[0][1] = 3.0; … … 993 993 psFree(myRegion); 994 994 995 fflush(stdout); 996 995 997 return(!testStatus); 996 998 } -
trunk/psLib/test/dataManip/verified/tst_psFunc00.stderr
r3383 r3769 8 8 Following should generate error msg for negative terms 9 9 <DATE><TIME>|<HOST>|E|psPolynomial1DAlloc (FILE:LINENO) 10 Error: n is less than 0.10 Error: n is 0 or less. 11 11 12 12 ---> TESTPOINT PASSED (psPolynomialXD{psPolynomial1DAlloc} | tst_psFunc00.c) … … 21 21 Following should generate error msg for negative terms 22 22 <DATE><TIME>|<HOST>|E|psPolynomial2DAlloc (FILE:LINENO) 23 Error: nX is less than 0.23 Error: nX is 0 or less. 24 24 <DATE><TIME>|<HOST>|I|testPolynomial2DAlloc 25 25 Following should generate error msg for negative terms 26 26 <DATE><TIME>|<HOST>|E|psPolynomial2DAlloc (FILE:LINENO) 27 Error: nY is less than 0.27 Error: nY is 0 or less. 28 28 29 29 ---> TESTPOINT PASSED (psPolynomialXD{psPolynomial2DAlloc} | tst_psFunc00.c) … … 38 38 Following should generate error msg for negative terms 39 39 <DATE><TIME>|<HOST>|E|psPolynomial3DAlloc (FILE:LINENO) 40 Error: nX is less than 0.40 Error: nX is 0 or less. 41 41 <DATE><TIME>|<HOST>|I|testPolynomial3DAlloc 42 42 Following should generate error msg for negative terms 43 43 <DATE><TIME>|<HOST>|E|psPolynomial3DAlloc (FILE:LINENO) 44 Error: nY is less than 0.44 Error: nY is 0 or less. 45 45 <DATE><TIME>|<HOST>|I|testPolynomial3DAlloc 46 46 Following should generate error msg for negative terms 47 47 <DATE><TIME>|<HOST>|E|psPolynomial3DAlloc (FILE:LINENO) 48 Error: nZ is less than 0.48 Error: nZ is 0 or less. 49 49 50 50 ---> TESTPOINT PASSED (psPolynomialXD{psPolynomial3DAlloc} | tst_psFunc00.c) … … 59 59 Following should generate error msg for negative terms 60 60 <DATE><TIME>|<HOST>|E|psPolynomial4DAlloc (FILE:LINENO) 61 Error: nW is less than 0.61 Error: nW is 0 or less. 62 62 <DATE><TIME>|<HOST>|I|testPolynomial4DAlloc 63 63 Following should generate error msg for negative terms 64 64 <DATE><TIME>|<HOST>|E|psPolynomial4DAlloc (FILE:LINENO) 65 Error: nX is less than 0.65 Error: nX is 0 or less. 66 66 <DATE><TIME>|<HOST>|I|testPolynomial4DAlloc 67 67 Following should generate error msg for negative terms 68 68 <DATE><TIME>|<HOST>|E|psPolynomial4DAlloc (FILE:LINENO) 69 Error: nY is less than 0.69 Error: nY is 0 or less. 70 70 <DATE><TIME>|<HOST>|I|testPolynomial4DAlloc 71 71 Following should generate error msg for negative terms 72 72 <DATE><TIME>|<HOST>|E|psPolynomial4DAlloc (FILE:LINENO) 73 Error: nZ is less than 0.73 Error: nZ is 0 or less. 74 74 75 75 ---> TESTPOINT PASSED (psPolynomialXD{psPolynomial4DAlloc} | tst_psFunc00.c) … … 84 84 Following should generate error msg for negative terms 85 85 <DATE><TIME>|<HOST>|E|psDPolynomial1DAlloc (FILE:LINENO) 86 Error: n is less than 0.86 Error: n is 0 or less. 87 87 88 88 ---> TESTPOINT PASSED (psPolynomialXD{psDPolynomial1DAlloc} | tst_psFunc00.c) … … 97 97 Following should generate error msg for negative terms 98 98 <DATE><TIME>|<HOST>|E|psDPolynomial2DAlloc (FILE:LINENO) 99 Error: nX is less than 0.99 Error: nX is 0 or less. 100 100 <DATE><TIME>|<HOST>|I|testDPolynomial2DAlloc 101 101 Following should generate error msg for negative terms 102 102 <DATE><TIME>|<HOST>|E|psDPolynomial2DAlloc (FILE:LINENO) 103 Error: nY is less than 0.103 Error: nY is 0 or less. 104 104 105 105 ---> TESTPOINT PASSED (psPolynomialXD{psDPolynomial2DAlloc} | tst_psFunc00.c) … … 114 114 Following should generate error msg for negative terms 115 115 <DATE><TIME>|<HOST>|E|psDPolynomial3DAlloc (FILE:LINENO) 116 Error: nX is less than 0.116 Error: nX is 0 or less. 117 117 <DATE><TIME>|<HOST>|I|testDPolynomial3DAlloc 118 118 Following should generate error msg for negative terms 119 119 <DATE><TIME>|<HOST>|E|psDPolynomial3DAlloc (FILE:LINENO) 120 Error: nY is less than 0.120 Error: nY is 0 or less. 121 121 <DATE><TIME>|<HOST>|I|testDPolynomial3DAlloc 122 122 Following should generate error msg for negative terms 123 123 <DATE><TIME>|<HOST>|E|psDPolynomial3DAlloc (FILE:LINENO) 124 Error: nZ is less than 0.124 Error: nZ is 0 or less. 125 125 126 126 ---> TESTPOINT PASSED (psPolynomialXD{psDPolynomial3DAlloc} | tst_psFunc00.c) … … 135 135 Following should generate error msg for negative terms 136 136 <DATE><TIME>|<HOST>|E|psDPolynomial4DAlloc (FILE:LINENO) 137 Error: nW is less than 0.137 Error: nW is 0 or less. 138 138 <DATE><TIME>|<HOST>|I|testDPolynomial4DAlloc 139 139 Following should generate error msg for negative terms 140 140 <DATE><TIME>|<HOST>|E|psDPolynomial4DAlloc (FILE:LINENO) 141 Error: nX is less than 0.141 Error: nX is 0 or less. 142 142 <DATE><TIME>|<HOST>|I|testDPolynomial4DAlloc 143 143 Following should generate error msg for negative terms 144 144 <DATE><TIME>|<HOST>|E|psDPolynomial4DAlloc (FILE:LINENO) 145 Error: nY is less than 0.145 Error: nY is 0 or less. 146 146 <DATE><TIME>|<HOST>|I|testDPolynomial4DAlloc 147 147 Following should generate error msg for negative terms 148 148 <DATE><TIME>|<HOST>|E|psDPolynomial4DAlloc (FILE:LINENO) 149 Error: nZ is less than 0.149 Error: nZ is 0 or less. 150 150 151 151 ---> TESTPOINT PASSED (psPolynomialXD{psDPolynomial4DAlloc} | tst_psFunc00.c) -
trunk/psLib/test/image/verified/tst_psImageManip.stderr
r3682 r3769 86 86 Following should be an error: 87 87 <DATE><TIME>|<HOST>|E|psImageClipComplexRegion (FILE:LINENO) 88 Specified vmin value, -0-6.80565e+38i, is not the the range of input psImage's valid pixel values (psC32), i.e. [-3.40282e+38:3.40282e+38].88 Specified vmin value, 0-6.80565e+38i, is not the the range of input psImage's valid pixel values (psC32), i.e. [-3.40282e+38:3.40282e+38]. 89 89 <DATE><TIME>|<HOST>|I|testImageClipComplexRegion 90 90 Following should be an error: … … 102 102 Following should be an error: 103 103 <DATE><TIME>|<HOST>|E|psImageClipComplexRegion (FILE:LINENO) 104 Specified vmax value, -0-6.80565e+38i, is not the the range of input psImage's valid pixel values (psC32), i.e. [-3.40282e+38:3.40282e+38].104 Specified vmax value, 0-6.80565e+38i, is not the the range of input psImage's valid pixel values (psC32), i.e. [-3.40282e+38:3.40282e+38]. 105 105 <DATE><TIME>|<HOST>|I|testImageClipComplexRegion 106 106 Following should be an error: -
trunk/psLib/test/psTest.c
r2752 r3769 134 134 } 135 135 136 fflush(stdout); 137 fflush(stderr); 136 138 return success; 137 139 } -
trunk/psLib/test/runTest
r3690 r3769 26 26 # 27 27 # $Revison: $ $Name: not supported by cvs2svn $ 28 # $Date: 2005-04- 09 00:04:57$28 # $Date: 2005-04-26 19:53:30 $ 29 29 # 30 30 # Copyright 2004 Maui High Performance Computering Center, University of Hawaii … … 39 39 # Assign variables based on the presence of command line options to the script 40 40 GetOptions( 41 "reset!" => \$reset, 42 "resetStderr!" => \$resetStderr, 43 "resetStdout!" => \$resetStdout, 44 "verified=s" => \$verifiedDir, 45 "help!" => \$help, 46 "quiet!" => \$quiet, 47 "printpassfail!" => \$verbose 41 "reset!" => \$reset, 42 "resetStderr!" => \$resetStderr, 43 "resetStdout!" => \$resetStdout, 44 "verified=s" => \$verifiedDir, 45 "help!" => \$help, 46 "quiet!" => \$quiet, 47 "printpassfail!" => \$verbose, 48 "printdiff!" => \$printdiff 48 49 ); 49 50 … … 255 256 exit(0); 256 257 } 258 257 259 exit($exitValue); 258 260 … … 364 366 # Display message of the failure of difference to user 365 367 print STDERR "\tFailed - STDOUT differences\n"; 366 368 print STDERR $diffstdout if $printdiff; 367 369 # Exit value to indicate STDOUT did not compare 368 370 $returnVal |= 8; … … 372 374 # Display message of the failure of difference to user 373 375 print STDERR "\tFailed - STDERR differences\n"; 376 print STDERR $diffstdout if $printdiff; 374 377 375 378 # Exit value to indicate STDERR did not compare
Note:
See TracChangeset
for help on using the changeset viewer.
