Index: trunk/ippTools/src/chiptool.c
===================================================================
--- trunk/ippTools/src/chiptool.c	(revision 7848)
+++ trunk/ippTools/src/chiptool.c	(revision 7864)
@@ -134,6 +134,11 @@
     psArray *pendingFrames = p2PendingFrameSearch(config);
     if (!pendingFrames) {
-        psError(PS_ERR_UNKNOWN, false, "no p2PendingFrames found");
-        return false;
+        psErr *err = psErrorLast();
+        if (strstr(err->msg, "no p2PendingExp rows found")) {
+            return true;
+        } else {
+            psError(PS_ERR_UNKNOWN, false, "no p2PendingFrames found");
+            return false;
+        }
     }
     bool status = p2PendingFramePrint(stdout, config, pendingFrames);
