Index: /trunk/psLib/test/dataIO/tst_psLookupTable_01.c
===================================================================
--- /trunk/psLib/test/dataIO/tst_psLookupTable_01.c	(revision 3329)
+++ /trunk/psLib/test/dataIO/tst_psLookupTable_01.c	(revision 3330)
@@ -12,6 +12,6 @@
 *  @author  Ross Harman, MHPCC
 *
-*  @version $Revision: 1.11 $  $Name: not supported by cvs2svn $
-*  @date  $Date: 2005-02-18 19:46:40 $
+*  @version $Revision: 1.12 $  $Name: not supported by cvs2svn $
+*  @date  $Date: 2005-02-25 19:55:01 $
 *
 *  Copyright 2004-5 Maui High Performance Computing Center, University of Hawaii
@@ -168,10 +168,10 @@
 
     // Allocate lookup table with valid parameters
-    table1 = psLookupTableAlloc("tableF32.dat", tableF32_validFrom, tableF32_validTo);
+    table1 = psLookupTableAlloc("verified/tableF32.dat", tableF32_validFrom, tableF32_validTo);
     if(table1 == NULL) {
         psError(PS_ERR_UNKNOWN,true,"Null lookup table generated from valid parameters");
         return 1;
     }
-    if(strcmp(table1->fileName,"tableF32.dat") != 0) {
+    if(strcmp(table1->fileName,"verified/tableF32.dat") != 0) {
         psError(PS_ERR_UNKNOWN,true,"File name not properly stored in psLookupTable structure.");
         return 2;
@@ -201,5 +201,5 @@
 
     // Allocate table using table with psU8 index and valid types and index-values
-    table1 = psLookupTableAlloc("tableU8.dat", 0, 100.5);
+    table1 = psLookupTableAlloc("verified/tableU8.dat", 0, 100.5);
     if(table1 == NULL) {
         psError(PS_ERR_UNKNOWN,true,"Unable to allocate table with tableU8.dat");
@@ -274,5 +274,5 @@
 
     // Allocate table using table with psS32 index and valid types and index-values
-    table1 = psLookupTableAlloc("tableS32.dat", -110, 1000.5);
+    table1 = psLookupTableAlloc("verified/tableS32.dat", -110, 1000.5);
     if(table1 == NULL) {
         psError(PS_ERR_UNKNOWN,true,"Unable to allocate table with tableS32.dat");
@@ -299,5 +299,5 @@
 
     // Allocate table using table with psF32 index and valid types and index-values
-    table1 = psLookupTableAlloc("tableF32.dat", -1100, 5500.5);
+    table1 = psLookupTableAlloc("verified/tableF32.dat", -1100, 5500.5);
     if(table1 == NULL) {
         psError(PS_ERR_UNKNOWN,true,"Unable to allocate table with tableF32.dat");
@@ -325,5 +325,5 @@
     // Allocate table using psU8 index but with unsorted rows and verify the list is
     // sorted properly after being read
-    table1 = psLookupTableAlloc("table10.dat",1,2);
+    table1 = psLookupTableAlloc("verified/table10.dat",1,2);
     if(table1 == NULL) {
         psError(PS_ERR_UNKNOWN,true,"Unable to allocate table with table10.dat");
@@ -397,5 +397,5 @@
 
     // Allocate table using table with invalid type in type row but valid index-values
-    table1 = psLookupTableAlloc("table2.dat",0,99.99);
+    table1 = psLookupTableAlloc("verified/table2.dat",0,99.99);
     if(table1 == NULL) {
         psError(PS_ERR_UNKNOWN,true,"Unable to allocate table with table2.dat");
@@ -411,5 +411,5 @@
 
     // Allocate table using table with invalid value
-    table1 = psLookupTableAlloc("table3.dat",0,75.0);
+    table1 = psLookupTableAlloc("verified/table3.dat",0,75.0);
     if(table1 == NULL) {
         psError(PS_ERR_UNKNOWN,true,"Unable to allocate table with table3.dat");
@@ -464,5 +464,5 @@
 
     // Interpolate values within the list and verify return values
-    table1 = psLookupTableAlloc("table10.dat",0,20);
+    table1 = psLookupTableAlloc("verified/table10.dat",0,20);
     table1 = psLookupTableRead(table1);
     for(psS32 i = 0; i < table1->numRows-1; i++ ) {
@@ -547,5 +547,5 @@
 
     // Interpolate values within the list and verify return values
-    table1 = psLookupTableAlloc("table10.dat",0,20);
+    table1 = psLookupTableAlloc("verified/table10.dat",0,20);
     table1 = psLookupTableRead(table1);
     statusVector = psVectorAlloc(table1->numCols,PS_TYPE_U32);
Index: /trunk/psLib/test/fileUtils/tst_psLookupTable_01.c
===================================================================
--- /trunk/psLib/test/fileUtils/tst_psLookupTable_01.c	(revision 3329)
+++ /trunk/psLib/test/fileUtils/tst_psLookupTable_01.c	(revision 3330)
@@ -12,6 +12,6 @@
 *  @author  Ross Harman, MHPCC
 *
-*  @version $Revision: 1.11 $  $Name: not supported by cvs2svn $
-*  @date  $Date: 2005-02-18 19:46:40 $
+*  @version $Revision: 1.12 $  $Name: not supported by cvs2svn $
+*  @date  $Date: 2005-02-25 19:55:01 $
 *
 *  Copyright 2004-5 Maui High Performance Computing Center, University of Hawaii
@@ -168,10 +168,10 @@
 
     // Allocate lookup table with valid parameters
-    table1 = psLookupTableAlloc("tableF32.dat", tableF32_validFrom, tableF32_validTo);
+    table1 = psLookupTableAlloc("verified/tableF32.dat", tableF32_validFrom, tableF32_validTo);
     if(table1 == NULL) {
         psError(PS_ERR_UNKNOWN,true,"Null lookup table generated from valid parameters");
         return 1;
     }
-    if(strcmp(table1->fileName,"tableF32.dat") != 0) {
+    if(strcmp(table1->fileName,"verified/tableF32.dat") != 0) {
         psError(PS_ERR_UNKNOWN,true,"File name not properly stored in psLookupTable structure.");
         return 2;
@@ -201,5 +201,5 @@
 
     // Allocate table using table with psU8 index and valid types and index-values
-    table1 = psLookupTableAlloc("tableU8.dat", 0, 100.5);
+    table1 = psLookupTableAlloc("verified/tableU8.dat", 0, 100.5);
     if(table1 == NULL) {
         psError(PS_ERR_UNKNOWN,true,"Unable to allocate table with tableU8.dat");
@@ -274,5 +274,5 @@
 
     // Allocate table using table with psS32 index and valid types and index-values
-    table1 = psLookupTableAlloc("tableS32.dat", -110, 1000.5);
+    table1 = psLookupTableAlloc("verified/tableS32.dat", -110, 1000.5);
     if(table1 == NULL) {
         psError(PS_ERR_UNKNOWN,true,"Unable to allocate table with tableS32.dat");
@@ -299,5 +299,5 @@
 
     // Allocate table using table with psF32 index and valid types and index-values
-    table1 = psLookupTableAlloc("tableF32.dat", -1100, 5500.5);
+    table1 = psLookupTableAlloc("verified/tableF32.dat", -1100, 5500.5);
     if(table1 == NULL) {
         psError(PS_ERR_UNKNOWN,true,"Unable to allocate table with tableF32.dat");
@@ -325,5 +325,5 @@
     // Allocate table using psU8 index but with unsorted rows and verify the list is
     // sorted properly after being read
-    table1 = psLookupTableAlloc("table10.dat",1,2);
+    table1 = psLookupTableAlloc("verified/table10.dat",1,2);
     if(table1 == NULL) {
         psError(PS_ERR_UNKNOWN,true,"Unable to allocate table with table10.dat");
@@ -397,5 +397,5 @@
 
     // Allocate table using table with invalid type in type row but valid index-values
-    table1 = psLookupTableAlloc("table2.dat",0,99.99);
+    table1 = psLookupTableAlloc("verified/table2.dat",0,99.99);
     if(table1 == NULL) {
         psError(PS_ERR_UNKNOWN,true,"Unable to allocate table with table2.dat");
@@ -411,5 +411,5 @@
 
     // Allocate table using table with invalid value
-    table1 = psLookupTableAlloc("table3.dat",0,75.0);
+    table1 = psLookupTableAlloc("verified/table3.dat",0,75.0);
     if(table1 == NULL) {
         psError(PS_ERR_UNKNOWN,true,"Unable to allocate table with table3.dat");
@@ -464,5 +464,5 @@
 
     // Interpolate values within the list and verify return values
-    table1 = psLookupTableAlloc("table10.dat",0,20);
+    table1 = psLookupTableAlloc("verified/table10.dat",0,20);
     table1 = psLookupTableRead(table1);
     for(psS32 i = 0; i < table1->numRows-1; i++ ) {
@@ -547,5 +547,5 @@
 
     // Interpolate values within the list and verify return values
-    table1 = psLookupTableAlloc("table10.dat",0,20);
+    table1 = psLookupTableAlloc("verified/table10.dat",0,20);
     table1 = psLookupTableRead(table1);
     statusVector = psVectorAlloc(table1->numCols,PS_TYPE_U32);
