Index: trunk/ippdb/tests/alloc.c
===================================================================
--- trunk/ippdb/tests/alloc.c	(revision 13649)
+++ trunk/ippdb/tests/alloc.c	(revision 13739)
@@ -1082,5 +1082,5 @@
         warpSkyfileRow  *object;
 
-        object = warpSkyfileRowAlloc(-64, "a string", "a string", "a string", 64.64, 64.64    );
+        object = warpSkyfileRowAlloc(-64, "a string", "a string", "a string", "a string", 64.64, 64.64    );
 
         if (!object) {
@@ -1104,4 +1104,8 @@
             exit(EXIT_FAILURE);
         }
+        if (strncmp(object->path_base, "a string", MAX_STRING_LENGTH)) {
+            psFree(object);
+            exit(EXIT_FAILURE);
+        }
         if (!object->bg == 64.64) {
             psFree(object);
@@ -1196,5 +1200,5 @@
         diffSkyfileRow  *object;
 
-        object = diffSkyfileRowAlloc(-64, "a string", 64.64, 64.64    );
+        object = diffSkyfileRowAlloc(-64, "a string", "a string", 64.64, 64.64    );
 
         if (!object) {
@@ -1210,4 +1214,8 @@
             exit(EXIT_FAILURE);
         }
+        if (strncmp(object->path_base, "a string", MAX_STRING_LENGTH)) {
+            psFree(object);
+            exit(EXIT_FAILURE);
+        }
         if (!object->bg == 64.64) {
             psFree(object);
@@ -1286,5 +1294,5 @@
         stackSumSkyfileRow *object;
 
-        object = stackSumSkyfileRowAlloc(-64, "a string", 64.64, 64.64    );
+        object = stackSumSkyfileRowAlloc(-64, "a string", "a string", 64.64, 64.64    );
 
         if (!object) {
@@ -1297,4 +1305,8 @@
         }
         if (strncmp(object->uri, "a string", MAX_STRING_LENGTH)) {
+            psFree(object);
+            exit(EXIT_FAILURE);
+        }
+        if (strncmp(object->path_base, "a string", MAX_STRING_LENGTH)) {
             psFree(object);
             exit(EXIT_FAILURE);
