- Timestamp:
- Nov 3, 2004, 3:05:00 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/test/dataManip/tst_psMatrixVectorArithmetic03.c
r2204 r2273 15 15 * @author Ross Harman, MHPCC 16 16 * 17 * @version $Revision: 1. 6$ $Name: not supported by cvs2svn $18 * @date $Date: 2004-1 0-27 00:57:33$17 * @version $Revision: 1.7 $ $Name: not supported by cvs2svn $ 18 * @date $Date: 2004-11-04 01:05:00 $ 19 19 * 20 20 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 221 221 CREATE_AND_SET_VECTOR(vector6,F64,0,3); 222 222 if ( psBinaryOp(vector6,vector4,"+",NULL) != NULL ) { 223 psError( __func__,"psBinaryOp should return null when out and in1 valid but in2 null.");223 psError(PS_ERR_UNKNOWN, true,"psBinaryOp should return null when out and in1 valid but in2 null."); 224 224 return 10; 225 225 } … … 228 228 vector4->type.dimen = PS_DIMEN_OTHER; 229 229 if ( psBinaryOp(NULL,vector4,"+",vector5) != NULL) { 230 psError( __func__,"psBinaryOp should return null when input dimen PS_DIMEN_OTHER.");230 psError(PS_ERR_UNKNOWN, true,"psBinaryOp should return null when input dimen PS_DIMEN_OTHER."); 231 231 return 11; 232 232 } … … 236 236 CREATE_AND_SET_IMAGE(image10,F64,0,3,3); 237 237 if ( psBinaryOp(image10,inScalar,"+",vector4) == NULL ) { 238 psError( __func__,"psBinaryOp should not return null when input/out dimension don't match.");238 psError(PS_ERR_UNKNOWN, true,"psBinaryOp should not return null when input/out dimension don't match."); 239 239 return 12; 240 240 }
Note:
See TracChangeset
for help on using the changeset viewer.
