Changeset 7546
- Timestamp:
- Jun 13, 2006, 1:55:34 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/psLib/test/types/tst_psLookupTable_01.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/test/types/tst_psLookupTable_01.c
r6484 r7546 12 12 * @author Ross Harman, MHPCC 13 13 * 14 * @version $Revision: 1. 4$ $Name: not supported by cvs2svn $15 * @date $Date: 2006-0 2-24 23:43:16$14 * @version $Revision: 1.5 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2006-06-13 23:55:34 $ 16 16 * 17 17 * Copyright 2004-5 Maui High Performance Computing Center, University of Hawaii … … 816 816 // Interpolate values with NULL table 817 817 psLogMsg(__func__,PS_LOG_INFO,"Following should generate an error message for NULL table"); 818 interpValues = psLookupTableInterpolateAll(table1,5 , NULL);818 interpValues = psLookupTableInterpolateAll(table1,5); 819 819 if(interpValues != NULL ) { 820 820 psError(PS_ERR_UNKNOWN,true,"Did not return NULL for NULL table"); … … 829 829 return 6; 830 830 } 831 interpValues = psLookupTableInterpolateAll(table1,5.25 , NULL);831 interpValues = psLookupTableInterpolateAll(table1,5.25); 832 832 if(interpValues == NULL) { 833 833 psError(PS_ERR_UNKNOWN,true,"Returned vector is NULL."); … … 844 844 845 845 // Interpolate values with index outside table 846 interpValues = psLookupTableInterpolateAll(table1,0 , NULL);846 interpValues = psLookupTableInterpolateAll(table1,0); 847 847 if(interpValues != NULL) { 848 848 psError(PS_ERR_UNKNOWN,true,"Did return NULL");
Note:
See TracChangeset
for help on using the changeset viewer.
