- Timestamp:
- May 6, 2019 11:30:09 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vboxtestvms.py
r78312 r78418 326 326 self.asVirtModesSup = [sVirtMode for sVirtMode in self.asVirtModesSup if sVirtMode != 'raw']; 327 327 # TEMPORARY HACK - START 328 sHostName = socket.getfqdn(); 328 sHostName = os.environ.get("COMPUTERNAME", None); 329 if sHostName: sHostName = sHostName.lower(); 330 else: sHostName = socket.getfqdn(); # Horribly slow on windows without IPv6 DNS/whatever. 329 331 if sHostName.startswith('testboxpile1'): 330 332 self.asVirtModesSup = [sVirtMode for sVirtMode in self.asVirtModesSup if sVirtMode != 'raw'];
Note:
See TracChangeset
for help on using the changeset viewer.