Index: /trunk/src/VBox/ValidationKit/testdriver/vboxinstaller.py
===================================================================
--- /trunk/src/VBox/ValidationKit/testdriver/vboxinstaller.py	(revision 65310)
+++ /trunk/src/VBox/ValidationKit/testdriver/vboxinstaller.py	(revision 65311)
@@ -197,10 +197,10 @@
     def actionAbort(self):
         """
-        Forward this to the sub testdriver first, then do the default pid file
-        based cleanup and finally swipe the scene with the heavy artillery.
+        Forward this to the sub testdriver first, then wipe all VBox like
+        processes, and finally do the pid file processing (again).
         """
         fRc1 = self._executeSubDriver([ 'abort', ], fMaySkip = False);
-        fRc2 = TestDriverBase.actionAbort(self);
-        fRc3 = self._killAllVBoxProcesses();
+        fRc2 = self._killAllVBoxProcesses();
+        fRc3 = TestDriverBase.actionAbort(self);
         return fRc1 and fRc2 and fRc3;
 
