Changeset 65971 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- Mar 7, 2017 11:14:29 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 113797
- Location:
- trunk/src/VBox/ValidationKit/bootsectors
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/bootsectors/Makefile.kmk
r65926 r65971 345 345 346 346 347 # 348 # pylint 349 # 350 VBOX_VALIDATIONKIT_PYTHON_SOURCES += $(wildcard $(PATH_SUB_CURRENT)/*.py) 351 $(evalcall def_vbox_validationkit_process_python_sources) 352 347 353 include $(FILE_KBUILD_SUB_FOOTER) 348 354 -
trunk/src/VBox/ValidationKit/bootsectors/bs3-cpu-generated-1-data.py
r65959 r65971 2 2 # -*- coding: utf-8 -*- 3 3 # $Id$ 4 # pylint: disable=invalid-name 4 5 5 6 """ … … 34 35 # Standard python imports. 35 36 import os; 36 import re;37 37 import sys; 38 import time;39 38 40 39 # Only the main script needs to modify the path. … … 43 42 sys.path.append(g_ksVmmAllDir); 44 43 45 import IEMAllInstructionsPython as iai; 44 import IEMAllInstructionsPython as iai; # pylint: disable=import-error 45 46 46 47 47 # Python 3 hacks: … … 339 339 key = lambda oInstr: oInstr.sMnemonic + ''.join([oOp.sType for oOp in oInstr.aoOperands]) 340 340 + (oInstr.sOpcode if oInstr.sOpcode else 'zz')): 341 if len(oInstr.aoTests) > 0:341 if oInstr.aoTests: 342 342 oTests = Bs3Cg1EncodedTests(oInstr); 343 343 oTests = self.addTests(oTests);
Note:
See TracChangeset
for help on using the changeset viewer.