Changeset 6204 for trunk/psLib/test/types
- Timestamp:
- Jan 26, 2006, 11:10:22 AM (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
r5303 r6204 12 12 * @author Ross Harman, MHPCC 13 13 * 14 * @version $Revision: 1. 2$ $Name: not supported by cvs2svn $15 * @date $Date: 200 5-10-13 00:38:56$14 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2006-01-26 21:10:22 $ 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 );818 interpValues = psLookupTableInterpolateAll(table1,5, NULL); 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 );831 interpValues = psLookupTableInterpolateAll(table1,5.25, NULL); 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 );846 interpValues = psLookupTableInterpolateAll(table1,0, NULL); 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.
