Index: /trunk/src/VBox/ValidationKit/testdriver/vboxtestvms.py
===================================================================
--- /trunk/src/VBox/ValidationKit/testdriver/vboxtestvms.py	(revision 55017)
+++ /trunk/src/VBox/ValidationKit/testdriver/vboxtestvms.py	(revision 55018)
@@ -32,4 +32,5 @@
 import re;
 import random;
+import socket;
 
 # Validation Kit imports.
@@ -264,4 +265,9 @@
             if self.sKind.find('_64') > 0:
                 self.asVirtModesSup = [sVirtMode for sVirtMode in self.asVirtModesSup if sVirtMode != 'raw'];
+            # TEMPORARY HACK - START
+            sHostName = socket.getfqdn();
+            if sHostName.startswith('testboxpile1'):
+                self.asVirtModesSup = [sVirtMode for sVirtMode in self.asVirtModesSup if sVirtMode != 'raw'];
+            # TEMPORARY HACK - END
 
         # Restrict the CPU count depending on the OS and/or percieved SMP readiness.
