Changeset 55018 in vbox for trunk/src/VBox/ValidationKit/testdriver
- Timestamp:
- Mar 31, 2015 9:36:20 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vboxtestvms.py
r54964 r55018 32 32 import re; 33 33 import random; 34 import socket; 34 35 35 36 # Validation Kit imports. … … 264 265 if self.sKind.find('_64') > 0: 265 266 self.asVirtModesSup = [sVirtMode for sVirtMode in self.asVirtModesSup if sVirtMode != 'raw']; 267 # TEMPORARY HACK - START 268 sHostName = socket.getfqdn(); 269 if sHostName.startswith('testboxpile1'): 270 self.asVirtModesSup = [sVirtMode for sVirtMode in self.asVirtModesSup if sVirtMode != 'raw']; 271 # TEMPORARY HACK - END 266 272 267 273 # Restrict the CPU count depending on the OS and/or percieved SMP readiness.
Note:
See TracChangeset
for help on using the changeset viewer.