Index: /trunk/src/VBox/ValidationKit/testdriver/base.py
===================================================================
--- /trunk/src/VBox/ValidationKit/testdriver/base.py	(revision 65308)
+++ /trunk/src/VBox/ValidationKit/testdriver/base.py	(revision 65309)
@@ -1640,4 +1640,5 @@
             reporter.log('*** extract action completed (fRc=%s) ***' % (fRc));
         elif 'abort' in asActions:
+            reporter.appendToProcessName('/abort'); # Make it easier to spot in the log.
             reporter.log('*** abort action ***');
             asActions.remove('abort');
Index: /trunk/src/VBox/ValidationKit/testdriver/reporter.py
===================================================================
--- /trunk/src/VBox/ValidationKit/testdriver/reporter.py	(revision 65308)
+++ /trunk/src/VBox/ValidationKit/testdriver/reporter.py	(revision 65309)
@@ -102,4 +102,13 @@
         """Increases the debug level."""
         self.iDebug += 1;
+
+    def appendToProcessName(self, sAppend):
+        """
+        Appends sAppend to the base process name.
+        Returns the new process name.
+        """
+        self.sName = os.path.splitext(os.path.basename(sys.argv[0]))[0] + sAppend;
+        return self.sName;
+
 
     #
@@ -1368,4 +1377,11 @@
     return g_oReporter.incDebug()
 
+def appendToProcessName(sAppend):
+    """
+    Appends sAppend to the base process name.
+    Returns the new process name.
+    """
+    return g_oReporter.appendToProcessName(sAppend);
+
 def getErrorCount():
     """
