Changeset 3313 for trunk/psLib/test/dataManip/tst_psMatrix07.c
- Timestamp:
- Feb 23, 2005, 2:19:51 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/test/dataManip/tst_psMatrix07.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/test/dataManip/tst_psMatrix07.c
r3291 r3313 16 16 * @author Ross Harman, MHPCC 17 17 * 18 * @version $Revision: 1.1 0$ $Name: not supported by cvs2svn $19 * @date $Date: 2005-02- 19 00:43:32$18 * @version $Revision: 1.11 $ $Name: not supported by cvs2svn $ 19 * @date $Date: 2005-02-24 00:19:51 $ 20 20 * 21 21 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 245 245 "Invalid operation: inVector or its data is NULL.", 0); 246 246 psLogMsg(__func__,PS_LOG_INFO,"Following should generate an error message"); 247 if(psVectorToMatrix(m2, NULL) != m2) {247 if(psVectorToMatrix(m2, NULL) != NULL) { 248 248 psError(PS_ERR_UNKNOWN,true,"Did not return output image"); 249 249 return 12; 250 250 } 251 251 psLogMsg(__func__,PS_LOG_INFO,"Following should generate an error message"); 252 if(psVectorToMatrix(m2_32, NULL) != m2_32) {252 if(psVectorToMatrix(m2_32, NULL) != NULL) { 253 253 psError(PS_ERR_UNKNOWN,true,"Did not return output image"); 254 254 return 13; … … 288 288 psFree(m1); 289 289 psFree(v1); 290 psFree(m2);291 290 psFree(v2); 292 291 psFree(v3); … … 295 294 psFree(m1_32); 296 295 psFree(v1_32); 297 psFree(m2_32);298 296 psFree(v2_32); 299 297 psFree(v3_32);
Note:
See TracChangeset
for help on using the changeset viewer.
