Index: /trunk/src/VBox/VMM/testcase/tstVMM.cpp
===================================================================
--- /trunk/src/VBox/VMM/testcase/tstVMM.cpp	(revision 62254)
+++ /trunk/src/VBox/VMM/testcase/tstVMM.cpp	(revision 62255)
@@ -50,4 +50,5 @@
 *********************************************************************************************************************************/
 static uint32_t g_cCpus = 1;
+static bool     g_fStat = false;                /* don't create log files on the testboxes */
 
 
@@ -213,4 +214,5 @@
         { "--cpus",          'c', RTGETOPT_REQ_UINT8 },
         { "--test",          't', RTGETOPT_REQ_STRING },
+        { "--stat",          's', RTGETOPT_REQ_NOTHING },
     };
     enum
@@ -249,6 +251,10 @@
                 break;
 
+            case 's':
+                g_fStat = true;
+                break;
+
             case 'h':
-                RTPrintf("usage: tstVMM [--cpus|-c cpus] [--test <vmm|tm|msrs|known-msrs>]\n");
+                RTPrintf("usage: tstVMM [--cpus|-c cpus] [-s] [--test <vmm|tm|msrs|known-msrs>]\n");
                 return 1;
 
@@ -286,5 +292,6 @@
                 if (RT_FAILURE(rc))
                     RTTestFailed(hTest, "VMMDoTest failed: rc=%Rrc\n", rc);
-                STAMR3Dump(pUVM, "*");
+                if (g_fStat)
+                    STAMR3Dump(pUVM, "*");
                 break;
             }
@@ -303,5 +310,6 @@
                 if (RT_FAILURE(rc))
                     RTTestFailed(hTest, "VMMDoTest failed: rc=%Rrc\n", rc);
-                STAMR3Dump(pUVM, "*");
+                if (g_fStat)
+                    STAMR3Dump(pUVM, "*");
                 break;
             }
