Index: trunk/ippdb/tests/alloc.c
===================================================================
--- trunk/ippdb/tests/alloc.c	(revision 16731)
+++ trunk/ippdb/tests/alloc.c	(revision 17142)
@@ -1172,5 +1172,5 @@
         warpRunRow      *object;
 
-        object = warpRunRowAlloc(-64, -64, "a string", "a string", "a string", "a string", "a string", "a string", "a string", "0001-01-01T00:00:00Z", true    );
+        object = warpRunRowAlloc(-64, -64, "a string", "a string", "a string", "a string", "a string", "a string", "a string", "a string", "0001-01-01T00:00:00Z", true    );
 
         if (!object) {
@@ -1202,4 +1202,8 @@
             exit(EXIT_FAILURE);
         }
+        if (strncmp(object->label, "a string", MAX_STRING_LENGTH)) {
+            psFree(object);
+            exit(EXIT_FAILURE);
+        }
         if (strncmp(object->dvodb, "a string", MAX_STRING_LENGTH)) {
             psFree(object);
@@ -2845,5 +2849,5 @@
         pstampRequestRow *object;
 
-        object = pstampRequestRowAlloc(-64, -64, "a string", "a string", "a string"    );
+        object = pstampRequestRowAlloc(-64, -64, "a string", "a string", "a string", -16    );
 
         if (!object) {
@@ -2871,4 +2875,8 @@
             exit(EXIT_FAILURE);
         }
+        if (!object->resultsFile == -16) {
+            psFree(object);
+            exit(EXIT_FAILURE);
+        }
 
         psFree(object);
@@ -2878,5 +2886,5 @@
         pstampJobRow    *object;
 
-        object = pstampJobRowAlloc(-64, -64, "a string", -32, "a string", "a string", "a string"    );
+        object = pstampJobRowAlloc(-64, -64, "a string", "a string", -32, "a string", "a string", "a string"    );
 
         if (!object) {
@@ -2893,4 +2901,8 @@
         }
         if (strncmp(object->state, "a string", MAX_STRING_LENGTH)) {
+            psFree(object);
+            exit(EXIT_FAILURE);
+        }
+        if (strncmp(object->jobType, "a string", MAX_STRING_LENGTH)) {
             psFree(object);
             exit(EXIT_FAILURE);
