Changeset 65344 in vbox for trunk/src/VBox/ValidationKit/testmanager/core
- Timestamp:
- Jan 16, 2017 7:05:38 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 112929
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/core/systemchangelog.py
r65343 r65344 71 71 72 72 ## Mapping a changelog entry kind to a table, key and clue. 73 kdWhatToTable = dict({ 73 kdWhatToTable = dict({ # pylint: disable=W0142 74 74 ksWhat_TestBox: ( 'TestBoxes', 'idTestBox', None, ), 75 75 ksWhat_TestCase: ( 'TestCasees', 'idTestCase', None, ), … … 84 84 ksWhat_User: ( 'Users', 'idUser', None, ), 85 85 ksWhat_TestResult: ( 'TestResults', 'idTestResult', None, ), 86 }, **{sEvent: ( 'SystemLog', 'tsCreated', 'TimestampId', ) for sEvent in SystemLogData.kasEvents}); # pylint: disable=W014286 }, **{sEvent: ( 'SystemLog', 'tsCreated', 'TimestampId', ) for sEvent in SystemLogData.kasEvents}); 87 87 88 88 ## The table key is the effective timestamp. (Can't be used above for some weird scoping reason.)
Note:
See TracChangeset
for help on using the changeset viewer.