Index: /branches/rel4/psLib/psLib.kdevses
===================================================================
--- /branches/rel4/psLib/psLib.kdevses	(revision 3058)
+++ /branches/rel4/psLib/psLib.kdevses	(revision 3059)
@@ -2,7 +2,7 @@
 <!DOCTYPE KDevPrjSession>
 <KDevPrjSession>
- <DocsAndViews NumberOfDocuments="8" >
+ <DocsAndViews NumberOfDocuments="6" >
   <Doc0 NumberOfViews="1" URL="file:/home/desonia/psLib/test/fileUtils/tst_psFits.c" >
-   <View0 Type="Source" />
+   <View0 line="96" Type="Source" />
   </Doc0>
   <Doc1 NumberOfViews="1" URL="file:/home/desonia/psLib/src/fileUtils/psFits.h" >
@@ -10,21 +10,15 @@
   </Doc1>
   <Doc2 NumberOfViews="1" URL="file:/home/desonia/psLib/src/fileUtils/psFits.c" >
-   <View0 Type="Source" />
+   <View0 line="1217" Type="Source" />
   </Doc2>
-  <Doc3 NumberOfViews="1" URL="file:/home/desonia/psLib/src/image/psImage.h" >
-   <View0 Type="Source" />
+  <Doc3 NumberOfViews="1" URL="file:/home/desonia/psLib/src/mainpage.dox" >
+   <View0 line="95" Type="Source" />
   </Doc3>
-  <Doc4 NumberOfViews="1" URL="file:/home/desonia/psLib/src/image/psImageIO.c" >
-   <View0 Type="Source" />
+  <Doc4 NumberOfViews="1" URL="file:/home/desonia/psLib/src/Makefile.Globals" >
+   <View0 line="43" Type="Source" />
   </Doc4>
-  <Doc5 NumberOfViews="1" URL="file:/home/desonia/psLib/src/fileUtils/psFileUtilsErrors.dat" >
-   <View0 Type="Source" />
+  <Doc5 NumberOfViews="1" URL="file:/home/desonia/psLib/src/Doxyfile" >
+   <View0 line="25" Type="Source" />
   </Doc5>
-  <Doc6 NumberOfViews="1" URL="file:/home/desonia/psLib/src/image/psImageErrors.dat" >
-   <View0 Type="Source" />
-  </Doc6>
-  <Doc7 NumberOfViews="1" URL="file:/home/desonia/psLib/src/sysUtils/psLogMsg.h" >
-   <View0 line="36" Type="Source" />
-  </Doc7>
  </DocsAndViews>
  <pluginList>
Index: /branches/rel4/psLib/src/Makefile
===================================================================
--- /branches/rel4/psLib/src/Makefile	(revision 3058)
+++ /branches/rel4/psLib/src/Makefile	(revision 3059)
@@ -3,6 +3,6 @@
 ##  Makefile:  psLib
 ##
-##  $Revision: 1.19 $  $Name: not supported by cvs2svn $
-##  $Date: 2004-12-10 02:50:14 $
+##  $Revision: 1.19.2.1 $  $Name: not supported by cvs2svn $
+##  $Date: 2005-01-19 02:17:04 $
 ##
 ##  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -54,4 +54,5 @@
 
 all:	$(ALLTARGETS)
+	sed 's|PREFIX|$(prefix)|' $(TIME_CONFIG_FILE).template > $(TIME_CONFIG_FILE)
 	$(BUILD_DYNAMIC1) $(TARGET_STATIC) $(BUILD_DYNAMIC2) $(TARGET_DYNAMIC)
 	@echo ""
@@ -199,4 +200,5 @@
 	install *.h $(includedir)
 	install $(TARGET_STATIC) $(libexecdir)
+	install $(TARGET_DYNAMIC) $(libexecdir)
 	install $(TARGET_DYNAMIC) $(libexecdir)
 
Index: /branches/rel4/psLib/src/Makefile.Globals
===================================================================
--- /branches/rel4/psLib/src/Makefile.Globals	(revision 3058)
+++ /branches/rel4/psLib/src/Makefile.Globals	(revision 3059)
@@ -6,6 +6,6 @@
 ##  Assumptions:    Variable "prefix" already defined
 ##
-##  $Revision: 1.38 $  $Name: not supported by cvs2svn $
-##  $Date: 2005-01-04 02:34:56 $
+##  $Revision: 1.38.2.1 $  $Name: not supported by cvs2svn $
+##  $Date: 2005-01-19 02:17:04 $
 ##
 ##  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -43,4 +43,8 @@
 ifndef TIME_CONFIG_FILE
     export TIME_CONFIG_FILE = $(prefix)/config/psTime.config
+endif
+
+ifndef TIME_XML_FILE
+    export TIME_XML_FILE = $(prefix)/config/psTime.xml
 endif
 
Index: /branches/rel4/psLib/test/astronomy/Makefile
===================================================================
--- /branches/rel4/psLib/test/astronomy/Makefile	(revision 3058)
+++ /branches/rel4/psLib/test/astronomy/Makefile	(revision 3059)
@@ -3,6 +3,6 @@
 ##  Makefile:   test/astronomy
 ##
-##  $Revision: 1.25 $  $Name: not supported by cvs2svn $
-##  $Date: 2005-01-07 23:52:00 $
+##  $Revision: 1.25.2.1 $  $Name: not supported by cvs2svn $
+##  $Date: 2005-01-19 02:17:04 $
 ##
 ##  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -16,5 +16,9 @@
 include ../../src/Makefile.Globals
 
-CFLAGS := -I../../include -I/usr/include/libxml $(CFLAGS)
+CFLAGS := -I../../include \
+  -DTIME_XML_FILE="\"$(TIME_XML_FILE)\"" \
+  -DTIME_CONFIG_FILE="\"$(TIME_CONFIG_FILE)\"" \
+  $(CFLAGS)
+
 LDFLAGS := -L../../lib -lpslib -lpstest -lxml2 $(LDFLAGS)
 
@@ -38,4 +42,8 @@
 
 all: $(TARGET)
+	sed 's|PREFIX|$(prefix)|' test.psTime.config1.template > test.psTime.config1
+	sed 's|PREFIX|$(prefix)|' test.psTime.config2.template > test.psTime.config2
+	sed 's|PREFIX|$(prefix)|' test.psTime.config3.template > test.psTime.config3
+	sed 's|PREFIX|$(prefix)|' test.psTime.config4.template > test.psTime.config4
 
 clean:
@@ -49,4 +57,5 @@
 	install test.config header_1.fits header_2.fits $(TARGET) $(testbindir)
 	install verified/*.stderr verified/*.stdout $(testbindir)/verified
+	install test.ser7.dat test.psTime.config1 test.psTime.config2 test.psTime.config3 test.psTime.config4 $(testbindir)
 
 $(testbindir):
Index: /branches/rel4/psLib/test/astronomy/test.psTime.config1
===================================================================
--- /branches/rel4/psLib/test/astronomy/test.psTime.config1	(revision 3058)
+++ /branches/rel4/psLib/test/astronomy/test.psTime.config1	(revision 3059)
@@ -1,4 +1,4 @@
 # This configuration file specifies values required for time calculations by psLib.
-psLib.time.tables.dir STR ../../dataxz                                                    # Directory for time tables
+psLib.time.tables.dir STR bogus                                                    # Directory for time tables
 psLib.time.tables.n S32 4                                                               # Number of time tables
 psLib.time.tables.files STR ser7.dat eopc01_1900_2004.dat finals_all.dat tai_utc.dat    # These are the table file names
Index: /branches/rel4/psLib/test/astronomy/test.psTime.config2
===================================================================
--- /branches/rel4/psLib/test/astronomy/test.psTime.config2	(revision 3058)
+++ /branches/rel4/psLib/test/astronomy/test.psTime.config2	(revision 3059)
@@ -1,4 +1,4 @@
 # This configuration file specifies values required for time calculations by psLib.
-psLib.time.tables.dir STR ../../data                                                    # Directory for time tables
+psLib.time.tables.dir STR /home/desonia/psLib/data                                                    # Directory for time tables
 psLib.time.tables.n S32 4                                                               # Number of time tables
 psLib.time.tables.files STR eopc01_1900_2004.dat finals_all.dat tai_utc.dat    # These are the table file names
Index: /branches/rel4/psLib/test/astronomy/test.psTime.config3
===================================================================
--- /branches/rel4/psLib/test/astronomy/test.psTime.config3	(revision 3058)
+++ /branches/rel4/psLib/test/astronomy/test.psTime.config3	(revision 3059)
@@ -1,4 +1,4 @@
 # This configuration file specifies values required for time calculations by psLib.
-psLib.time.tables.dir STR ../../data                                                    # Directory for time tables
+psLib.time.tables.dir STR /home/desonia/psLib/data                                                    # Directory for time tables
 psLib.time.tables.n S32 4                                                               # Number of time tables
 psLib.time.tables.files STR ser7.dat eopc01_1900_2004.dat finals_all.dat tai_utc.dat    # These are the table file names
Index: /branches/rel4/psLib/test/astronomy/tst_psMetadata_07.c
===================================================================
--- /branches/rel4/psLib/test/astronomy/tst_psMetadata_07.c	(revision 3058)
+++ /branches/rel4/psLib/test/astronomy/tst_psMetadata_07.c	(revision 3059)
@@ -9,6 +9,6 @@
 *  @author  Ross Harman, MHPCC
 *
-*  @version $Revision: 1.5 $  $Name: not supported by cvs2svn $
-*  @date  $Date: 2004-12-03 23:38:41 $
+*  @version $Revision: 1.5.2.1 $  $Name: not supported by cvs2svn $
+*  @date  $Date: 2005-01-19 02:17:04 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -17,4 +17,9 @@
 #include "pslib.h"
 #include "psTest.h"
+
+#ifndef TIME_XML_FILE
+#define TIME_XML_FILE "../../config/psTime.xml"
+#pragma warning TIME_XML_FILE was not defined in the makefile.
+#endif
 
 
@@ -26,5 +31,5 @@
     psU32 nFail = 0;
     psMetadata *md = NULL;
-    md = psMetadataParseConfigXml(md, &nFail, "../../config/psTime.xml", true);
+    md = psMetadataParseConfigXml(md, &nFail, TIME_XML_FILE, true);
     if (nFail != 0) {
         printf("psMetadataParseConfigXml returned error %d\n", res);
Index: /branches/rel4/psLib/test/astronomy/tst_psTime_04.c
===================================================================
--- /branches/rel4/psLib/test/astronomy/tst_psTime_04.c	(revision 3058)
+++ /branches/rel4/psLib/test/astronomy/tst_psTime_04.c	(revision 3059)
@@ -14,6 +14,6 @@
  *  @author  Ross Harman, MHPCC
  *
- *  @version $Revision: 1.5 $  $Name: not supported by cvs2svn $
- *  @date  $Date: 2004-12-16 18:53:35 $
+ *  @version $Revision: 1.5.2.1 $  $Name: not supported by cvs2svn $
+ *  @date  $Date: 2005-01-19 02:17:04 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -29,5 +29,5 @@
     // Test A - Initialize time
     printPositiveTestHeader(stdout, "psTime", "Test A - Initialize time");
-    psLibInit(true, "../../config/psTime.config");
+    psLibInit(true, TIME_CONFIG_FILE);
     psLibFinalize();
     printFooter(stdout, "psTime", "Test A - Initialize time", true);
Index: /branches/rel4/psLib/test/astronomy/verified/tst_psTime_04.stderr
===================================================================
--- /branches/rel4/psLib/test/astronomy/verified/tst_psTime_04.stderr	(revision 3058)
+++ /branches/rel4/psLib/test/astronomy/verified/tst_psTime_04.stderr	(revision 3059)
@@ -4,11 +4,11 @@
     Failed to initialize psTime.
 <DATE><TIME>|<HOST>|E|psLookupTableRead (psLookupTable.c:<LINENO>)
-    Failed to open file ../../dataxz/ser7.dat.
+    Failed to open file bogus/ser7.dat.
 <DATE><TIME>|<HOST>|E|psLookupTableRead (psLookupTable.c:<LINENO>)
-    Failed to open file ../../dataxz/eopc01_1900_2004.dat.
+    Failed to open file bogus/eopc01_1900_2004.dat.
 <DATE><TIME>|<HOST>|E|psLookupTableRead (psLookupTable.c:<LINENO>)
-    Failed to open file ../../dataxz/finals_all.dat.
+    Failed to open file bogus/finals_all.dat.
 <DATE><TIME>|<HOST>|E|psLookupTableRead (psLookupTable.c:<LINENO>)
-    Failed to open file ../../dataxz/tai_utc.dat.
+    Failed to open file bogus/tai_utc.dat.
 <DATE><TIME>|<HOST>|E|p_psTimeInit (psTime.c:<LINENO>)
     Incorrect number of table files entered. Found: 3. Expected: 4.
Index: /branches/rel4/psLib/test/collections/tst_psMetadata_07.c
===================================================================
--- /branches/rel4/psLib/test/collections/tst_psMetadata_07.c	(revision 3058)
+++ /branches/rel4/psLib/test/collections/tst_psMetadata_07.c	(revision 3059)
@@ -9,6 +9,6 @@
 *  @author  Ross Harman, MHPCC
 *
-*  @version $Revision: 1.5 $  $Name: not supported by cvs2svn $
-*  @date  $Date: 2004-12-03 23:38:41 $
+*  @version $Revision: 1.5.2.1 $  $Name: not supported by cvs2svn $
+*  @date  $Date: 2005-01-19 02:17:04 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -17,4 +17,9 @@
 #include "pslib.h"
 #include "psTest.h"
+
+#ifndef TIME_XML_FILE
+#define TIME_XML_FILE "../../config/psTime.xml"
+#pragma warning TIME_XML_FILE was not defined in the makefile.
+#endif
 
 
@@ -26,5 +31,5 @@
     psU32 nFail = 0;
     psMetadata *md = NULL;
-    md = psMetadataParseConfigXml(md, &nFail, "../../config/psTime.xml", true);
+    md = psMetadataParseConfigXml(md, &nFail, TIME_XML_FILE, true);
     if (nFail != 0) {
         printf("psMetadataParseConfigXml returned error %d\n", res);
Index: /branches/rel4/psLib/test/dataIO/Makefile
===================================================================
--- /branches/rel4/psLib/test/dataIO/Makefile	(revision 3058)
+++ /branches/rel4/psLib/test/dataIO/Makefile	(revision 3059)
@@ -3,6 +3,6 @@
 ##  Makefile:   test/fileUtils
 ##
-##  $Revision: 1.2 $  $Name: not supported by cvs2svn $
-##  $Date: 2005-01-12 22:17:02 $
+##  $Revision: 1.2.2.1 $  $Name: not supported by cvs2svn $
+##  $Date: 2005-01-19 02:17:05 $
 ##
 ##  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -16,5 +16,5 @@
 include ../../src/Makefile.Globals
 
-CFLAGS := -I../../include $(CFLAGS)
+CFLAGS := -I../../include -DUTC_DAT_FILE="\"$(prefix)/data/tai_utc.dat\"" $(CFLAGS)
 LDFLAGS := -L../../lib -lpslib -lpstest $(LDFLAGS)
 
@@ -34,4 +34,5 @@
 
 install: $(testbindir) $(testbindir)/verified $(TARGET)
+	install $(TARGET) $(testbindir)
 	install verified/*.stderr verified/*.stdout $(testbindir)/verified
 
Index: /branches/rel4/psLib/test/dataIO/tst_psLookupTable_01.c
===================================================================
--- /branches/rel4/psLib/test/dataIO/tst_psLookupTable_01.c	(revision 3058)
+++ /branches/rel4/psLib/test/dataIO/tst_psLookupTable_01.c	(revision 3059)
@@ -12,6 +12,6 @@
 *  @author  Ross Harman, MHPCC
 *
-*  @version $Revision: 1.5 $  $Name: not supported by cvs2svn $
-*  @date  $Date: 2004-12-23 19:38:38 $
+*  @version $Revision: 1.5.2.1 $  $Name: not supported by cvs2svn $
+*  @date  $Date: 2005-01-19 02:17:05 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -36,5 +36,5 @@
     psLookupTable* table1 = NULL;
 
-    table1 = psLookupTableAlloc("../../data/tai_utc.dat", 0, 2451179.6);
+    table1 = psLookupTableAlloc(UTC_DAT_FILE, 0, 2451179.6);
     table1 = psLookupTableRead(table1);
     out1 = psLookupTableInterpolate(table1, index1, 0, &status1);
@@ -56,5 +56,5 @@
     psF64 truthData2[] = {31.5, 41317, 0};
 
-    table2 = psLookupTableAlloc("../../data/tai_utc.dat", 0, 2451179.6);
+    table2 = psLookupTableAlloc(UTC_DAT_FILE, 0, 2451179.6);
     table2 = psLookupTableRead(table2);
     stats2 = psVectorAlloc(table2->numCols, PS_TYPE_U32);
@@ -78,5 +78,5 @@
     psLookupTable* table3 = NULL;
 
-    table3 = psLookupTableAlloc("../../data/tai_utc.dat", 0, 2451179.6);
+    table3 = psLookupTableAlloc(UTC_DAT_FILE, 0, 2451179.6);
     table3 = psLookupTableRead(table3);
     out3 = psLookupTableInterpolate(table3, index3, 0, &status3);
@@ -93,5 +93,5 @@
     psLookupTable* table4 = NULL;
 
-    table4 = psLookupTableAlloc("../../data/tai_utc.dat", 0, 2451179.6);
+    table4 = psLookupTableAlloc(UTC_DAT_FILE, 0, 2451179.6);
     table4 = psLookupTableRead(table4);
     out4 = psLookupTableInterpolate(table4, index4, 0, &status4);
Index: /branches/rel4/psLib/test/dataManip/.cvsignore
===================================================================
--- /branches/rel4/psLib/test/dataManip/.cvsignore	(revision 3058)
+++ /branches/rel4/psLib/test/dataManip/.cvsignore	(revision 3059)
@@ -54,2 +54,4 @@
 tst_psMinimize07
 tst_psRandom
+seed_msglog1.txt
+seed_msglog2.txt
Index: /branches/rel4/psLib/test/fileUtils/Makefile
===================================================================
--- /branches/rel4/psLib/test/fileUtils/Makefile	(revision 3058)
+++ /branches/rel4/psLib/test/fileUtils/Makefile	(revision 3059)
@@ -3,6 +3,6 @@
 ##  Makefile:   test/fileUtils
 ##
-##  $Revision: 1.2 $  $Name: not supported by cvs2svn $
-##  $Date: 2005-01-12 22:17:02 $
+##  $Revision: 1.2.2.1 $  $Name: not supported by cvs2svn $
+##  $Date: 2005-01-19 02:17:05 $
 ##
 ##  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -16,5 +16,5 @@
 include ../../src/Makefile.Globals
 
-CFLAGS := -I../../include $(CFLAGS)
+CFLAGS := -I../../include -DUTC_DAT_FILE="\"$(prefix)/data/tai_utc.dat\"" $(CFLAGS)
 LDFLAGS := -L../../lib -lpslib -lpstest $(LDFLAGS)
 
@@ -34,4 +34,5 @@
 
 install: $(testbindir) $(testbindir)/verified $(TARGET)
+	install $(TARGET) $(testbindir)
 	install verified/*.stderr verified/*.stdout $(testbindir)/verified
 
Index: /branches/rel4/psLib/test/fileUtils/tst_psLookupTable_01.c
===================================================================
--- /branches/rel4/psLib/test/fileUtils/tst_psLookupTable_01.c	(revision 3058)
+++ /branches/rel4/psLib/test/fileUtils/tst_psLookupTable_01.c	(revision 3059)
@@ -12,6 +12,6 @@
 *  @author  Ross Harman, MHPCC
 *
-*  @version $Revision: 1.5 $  $Name: not supported by cvs2svn $
-*  @date  $Date: 2004-12-23 19:38:38 $
+*  @version $Revision: 1.5.2.1 $  $Name: not supported by cvs2svn $
+*  @date  $Date: 2005-01-19 02:17:05 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -36,5 +36,5 @@
     psLookupTable* table1 = NULL;
 
-    table1 = psLookupTableAlloc("../../data/tai_utc.dat", 0, 2451179.6);
+    table1 = psLookupTableAlloc(UTC_DAT_FILE, 0, 2451179.6);
     table1 = psLookupTableRead(table1);
     out1 = psLookupTableInterpolate(table1, index1, 0, &status1);
@@ -56,5 +56,5 @@
     psF64 truthData2[] = {31.5, 41317, 0};
 
-    table2 = psLookupTableAlloc("../../data/tai_utc.dat", 0, 2451179.6);
+    table2 = psLookupTableAlloc(UTC_DAT_FILE, 0, 2451179.6);
     table2 = psLookupTableRead(table2);
     stats2 = psVectorAlloc(table2->numCols, PS_TYPE_U32);
@@ -78,5 +78,5 @@
     psLookupTable* table3 = NULL;
 
-    table3 = psLookupTableAlloc("../../data/tai_utc.dat", 0, 2451179.6);
+    table3 = psLookupTableAlloc(UTC_DAT_FILE, 0, 2451179.6);
     table3 = psLookupTableRead(table3);
     out3 = psLookupTableInterpolate(table3, index3, 0, &status3);
@@ -93,5 +93,5 @@
     psLookupTable* table4 = NULL;
 
-    table4 = psLookupTableAlloc("../../data/tai_utc.dat", 0, 2451179.6);
+    table4 = psLookupTableAlloc(UTC_DAT_FILE, 0, 2451179.6);
     table4 = psLookupTableRead(table4);
     out4 = psLookupTableInterpolate(table4, index4, 0, &status4);
Index: anches/rel4/psLib/test/sysUtils/verified/tst_psHash00.stdout
===================================================================
--- /branches/rel4/psLib/test/sysUtils/verified/tst_psHash00.stdout	(revision 3058)
+++ 	(revision )
@@ -1,9 +1,0 @@
-/***************************** TESTPOINT ******************************************\
-*             TestFile: tst_psHash00.c                                             *
-*            TestPoint: psHash functions{psHashAlloc()}                            *
-*             TestType: Positive                                                   *
-\**********************************************************************************/
-
-
----> TESTPOINT PASSED (psHash functions{psHashAlloc()} | tst_psHash00.c)
-
Index: anches/rel4/psLib/test/sysUtils/verified/tst_psHash01.stdout
===================================================================
--- /branches/rel4/psLib/test/sysUtils/verified/tst_psHash01.stdout	(revision 3058)
+++ 	(revision )
@@ -1,9 +1,0 @@
-/***************************** TESTPOINT ******************************************\
-*             TestFile: tst_psHash01.c                                             *
-*            TestPoint: psHash functions{psHashFree()}                             *
-*             TestType: Positive                                                   *
-\**********************************************************************************/
-
-
----> TESTPOINT PASSED (psHash functions{psHashFree()} | tst_psHash01.c)
-
Index: anches/rel4/psLib/test/sysUtils/verified/tst_psHash03.stdout
===================================================================
--- /branches/rel4/psLib/test/sysUtils/verified/tst_psHash03.stdout	(revision 3058)
+++ 	(revision )
@@ -1,9 +1,0 @@
-/***************************** TESTPOINT ******************************************\
-*             TestFile: tst_psHash03.c                                             *
-*            TestPoint: psHash functions{psHashRemove()}                           *
-*             TestType: Positive                                                   *
-\**********************************************************************************/
-
-
----> TESTPOINT PASSED (psHash functions{psHashRemove()} | tst_psHash03.c)
-
Index: anches/rel4/psLib/test/sysUtils/verified/tst_psHash04.stdout
===================================================================
--- /branches/rel4/psLib/test/sysUtils/verified/tst_psHash04.stdout	(revision 3058)
+++ 	(revision )
@@ -1,13 +1,0 @@
-/***************************** TESTPOINT ******************************************\
-*             TestFile: tst_psHash04.c                                             *
-*            TestPoint: psHash functions{psHashKeyList()}                          *
-*             TestType: Positive                                                   *
-\**********************************************************************************/
-
-Linked List Entries: ENTRY03
-Linked List Entries: ENTRY02
-Linked List Entries: ENTRY01
-Linked List Entries: ENTRY00
-
----> TESTPOINT PASSED (psHash functions{psHashKeyList()} | tst_psHash04.c)
-
Index: /trunk/psLib/test/dataManip/.cvsignore
===================================================================
--- /trunk/psLib/test/dataManip/.cvsignore	(revision 3058)
+++ /trunk/psLib/test/dataManip/.cvsignore	(revision 3059)
@@ -54,2 +54,4 @@
 tst_psMinimize07
 tst_psRandom
+seed_msglog1.txt
+seed_msglog2.txt
