diff options
author | vboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f> | 2017-02-21 16:54:21 +0000 |
---|---|---|
committer | vboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f> | 2017-02-21 16:54:21 +0000 |
commit | aae9030a27fa2f19c30ecb9e4a275b5fdf36ebea (patch) | |
tree | 574cef5e4791ca8219b3d11069a8070b8be96441 /src/VBox/ValidationKit/testdriver | |
parent | b5ad675d6bf23356dc3bd8ab2ae6832d059748ca (diff) | |
download | VirtualBox-svn-aae9030a27fa2f19c30ecb9e4a275b5fdf36ebea.tar.gz |
Validation Kit: blacklist S11/64 on VIA
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@65835 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'src/VBox/ValidationKit/testdriver')
-rw-r--r-- | src/VBox/ValidationKit/testdriver/vboxtestvms.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/VBox/ValidationKit/testdriver/vboxtestvms.py b/src/VBox/ValidationKit/testdriver/vboxtestvms.py index 1edd796d55d..c13d2943e53 100644 --- a/src/VBox/ValidationKit/testdriver/vboxtestvms.py +++ b/src/VBox/ValidationKit/testdriver/vboxtestvms.py @@ -416,6 +416,9 @@ class TestVm(object): # Vista 64 throws BSOD 0x5D (UNSUPPORTED_PROCESSOR) if self.aInfo[g_iKind] in ['WindowsVista_64']: return True; + # Solaris 11 hangs on VIA, tested on a physical box (testboxvqc) + if self.aInfo[g_iKind] in ['Solaris11_64']: + return True; return False; def isP4Incompatible(self): |