Changeset 65732 in vbox
- Timestamp:
- Feb 10, 2017 1:37:24 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 113446
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r65692 r65732 1846 1846 $(if-expr $(VBOX_PYLINT_VERSION) >= 10201 && $(VBOX_PYLIN_VERSION) < 10500,--disable=bad-option-value,) \ 1847 1847 $(if-expr $(VBOX_PYLINT_VERSION) >= 10500,--disable=C0413 --disable=E0012 --disable=locally-enabled,) \ 1848 $(if-expr $(VBOX_PYLINT_VERSION) >= 10600,--disable=C0111 --disable=C0305 --disable=C0412,) \ 1848 1849 --disable=W0301,W0511,W0603,W0702,W0703,C0321,R0201,I0011 \ 1849 1850 --ignored-classes=testdriver.vboxcon \ -
trunk/src/VBox/ValidationKit/testdriver/base.py
r65309 r65732 877 877 print >> sys.stderr, "testdriver.base: asActions = '%s'" % self.asActions; 878 878 print >> sys.stderr, "testdriver.base: secTimeoutAbs = '%s'" % self.secTimeoutAbs; 879 for sVar in sorted(os.environ .keys()):879 for sVar in sorted(os.environ): 880 880 print >> sys.stderr, "os.environ[%s] = '%s'" % (sVar, os.environ[sVar],); 881 881 -
trunk/src/VBox/ValidationKit/testmanager/core/schedulerbase.py
r65034 r65732 1022 1022 sPreReqSet = '' 1023 1023 if len(dPreReqs) > 0: 1024 for idPreReq in sorted(dPreReqs .keys()):1024 for idPreReq in sorted(dPreReqs): 1025 1025 sPreReqSet += ', (' + str(idPreReq) + ')'; 1026 1026 sPreReqSet = sPreReqSet[2:]; # drop the leading ', '. -
trunk/src/VBox/ValidationKit/testmanager/core/webservergluecgi.py
r62484 r65732 31 31 32 32 # Standard python imports. 33 import cgi;34 33 import cgitb; 35 34 import os; 36 35 import sys; 36 import cgi; 37 37 38 38 # Validation Kit imports.
Note:
See TracChangeset
for help on using the changeset viewer.