Index: /trunk/psLib/test/collections/tst_psVector_01.c
===================================================================
--- /trunk/psLib/test/collections/tst_psVector_01.c	(revision 967)
+++ /trunk/psLib/test/collections/tst_psVector_01.c	(revision 968)
@@ -10,9 +10,9 @@
  *     E)  Free S32 vector
  *     F)  Attempt to create a S32 vector with zero size
- * 
+ *
  *  @author  Ross Harman, MHPCC
  *
- *  @version $Revision: 1.4 $  $Name: not supported by cvs2svn $
- *  @date  $Date: 2004-06-04 20:18:12 $
+ *  @version $Revision: 1.5 $  $Name: not supported by cvs2svn $
+ *  @date  $Date: 2004-06-10 01:23:52 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -95,4 +95,10 @@
     printFooter(stdout, "psVector", "Attempt to create a S32 vector with zero size", true);
 
+    // Test G - Attempt to realloc a null S32 vector
+    printNegativeTestHeader(stdout,"psVector", "Attempt to realloc a null S32 vector",
+                            "Null input vector", 0);
+    psVectorRealloc(6, NULL);
+    printFooter(stdout, "psVector", "Attempt to realloc a null S32 vector", true);
+
     return 0;
 }
Index: /trunk/psLib/test/collections/verified/tst_psVector_01.stderr
===================================================================
--- /trunk/psLib/test/collections/verified/tst_psVector_01.stderr	(revision 967)
+++ /trunk/psLib/test/collections/verified/tst_psVector_01.stderr	(revision 968)
@@ -1,1 +1,2 @@
  <DATE> <TIME> <HOST> |E|psVectorAlloc  |Invalid value for nalloc. nalloc: 0
+ <DATE> <TIME> <HOST> |E|psVectorRealloc|Null input vector
Index: /trunk/psLib/test/collections/verified/tst_psVector_01.stdout
===================================================================
--- /trunk/psLib/test/collections/verified/tst_psVector_01.stdout	(revision 967)
+++ /trunk/psLib/test/collections/verified/tst_psVector_01.stdout	(revision 968)
@@ -80,2 +80,13 @@
 ---> TESTPOINT PASSED (psVector{Attempt to create a S32 vector with zero size} | tst_psVector_01.c)
 
+/----------------------------- TESTPOINT ------------------------------------------\
+|             TestFile: tst_psVector_01.c                                          |
+|            TestPoint: psVector{Attempt to realloc a null S32 vector}             |
+|             TestType: Negative                                                   |
+|    ExpectedErrorText: Null input vector                                          |
+|  ExpectedStatusValue: 0                                                          |
+\----------------------------------------------------------------------------------/
+
+
+---> TESTPOINT PASSED (psVector{Attempt to realloc a null S32 vector} | tst_psVector_01.c)
+
