Index: branches/eam_branches/ipp-20101205/Ohana/src/tools/src/roc.c
===================================================================
--- branches/eam_branches/ipp-20101205/Ohana/src/tools/src/roc.c	(revision 30237)
+++ branches/eam_branches/ipp-20101205/Ohana/src/tools/src/roc.c	(revision 30252)
@@ -318,5 +318,5 @@
 
   scan_line (target, line);
-  myAssert (!strncmp(line, "ROC Version 0", strlen("ROC Verion 0")), "invalid ROC file or format");
+  myAssert (!strncmp(line, "ROC Version 0", strlen("ROC Verion 0")), "invalid ROC file or format in %s",targetName);
 
   scan_line (target, line);
@@ -352,5 +352,5 @@
   for (i = 0; i < Ninput; i++) {
     input[i] = fopen(inputName[i], "r");
-    myAssert (input[i], "failed to open file %s\n",inputName[i]);
+    myAssert (input[i], "failed to open file %s in %s\n",inputName[i],targetName);
   }
 
@@ -365,5 +365,5 @@
       Nread = MIN (ROC_BLOCKSIZE, sizes[i] - bytes_read[i]);
       Nbytes = fread (inputData[i], 1, Nread, input[i]);
-      myAssert (Nbytes == Nread, "failed to read data file: %s read: %d expect: %d prev_read: %d block: %d\n",inputName[i],Nbytes,Nread,(int) bytes_read[i],n);
+      myAssert (Nbytes == Nread, "failed to read data file: %s read: %d expect: %d prev_read: %d block: %d in %s\n",inputName[i],Nbytes,Nread,(int) bytes_read[i],n,targetName);
       if (Nread < ROC_BLOCKSIZE) {
 	// if we have reached the end of the file, fill in the rest with NULLs
@@ -379,5 +379,5 @@
 	value = value ^ inputData[i][j];
       }
-      myAssert(value == 0, "validation failed on block %d and byte %d\n",n,j);
+      myAssert(value == 0, "validation failed on block %d and byte %d in %s\n",n,j,targetName);
     }
 
