Changeset 65211 in vbox for trunk/src/VBox/ValidationKit/testmanager/core
- Timestamp:
- Jan 9, 2017 3:32:42 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 112717
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/core/systemchangelog.py
r65040 r65211 70 70 ## @} 71 71 72 ## The table key is the effective timestamp.73 ksClue_TimestampId = 'TimestampId';74 75 72 ## Mapping a changelog entry kind to a table, key and clue. 76 kdWhatToTable = {73 kdWhatToTable = dict({ 77 74 ksWhat_TestBox: ( 'TestBoxes', 'idTestBox', None, ), 78 75 ksWhat_TestCase: ( 'TestCasees', 'idTestCase', None, ), … … 87 84 ksWhat_User: ( 'Users', 'idUser', None, ), 88 85 ksWhat_TestResult: ( 'TestResults', 'idTestResult', None, ), 89 }; 90 for sEvent in SystemLogData.kasEvents: 91 kdWhatToTable[sEvent] = ( 'SystemLog', 'tsCreated', ksClue_TimestampId, ); 86 }, **{sEvent: ( 'SystemLog', 'tsCreated', 'TimestampId', ) for sEvent in SystemLogData.kasEvents}); 87 88 ## The table key is the effective timestamp. (Can't be used above for some weird scoping reason.) 89 ksClue_TimestampId = 'TimestampId'; 92 90 93 91 ## @todo move to config.py?
Note:
See TracChangeset
for help on using the changeset viewer.