Changeset 103104 in vbox
- Timestamp:
- Jan 29, 2024 12:10:39 PM (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vboxtestvms.py
r103095 r103104 1918 1918 if 'interpreter' in asVirtModesWanted and not vboxcon.VMExecutionEngine_Interpreter in aenmExecEngines: 1919 1919 reporter.log('IEM interpreter is not available in this build (or perhaps for this host) and VM CPU architecture, skipping it.'); 1920 asVirtModesWanted.remove('i em-interpreted');1920 asVirtModesWanted.remove('interpreter'); 1921 1921 1922 1922 if 'recompiler' in asVirtModesWanted and not vboxcon.VMExecutionEngine_Recompiler in aenmExecEngines: 1923 1923 reporter.log('IEM recompiler is not available in this build (or perhaps for this host) and VM CPU architecture, skipping it.'); 1924 asVirtModesWanted.remove(' iem-recompiled');1924 asVirtModesWanted.remove('recompiler'); 1925 1925 except: 1926 1926 reporter.errorXcpt('failed to query supported execution engines for "%s"' % (oVm.sVmName, ));
Note:
See TracChangeset
for help on using the changeset viewer.