VirtualBox

Ignore:
Timestamp:
Feb 5, 2024 10:00:40 AM (14 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
161464
Message:

ValidationKit/testmanager: Distinguish between testboxes which can do hw-virt/np and the ones using the host native API for virtualization, bugref:10592

Location:
trunk/src/VBox/ValidationKit/testmanager/db
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/testmanager/db/TestManagerDatabaseComments.pgsql

    r98103 r103197  
    621621  'Set if the test box does raw-mode tests.';
    622622
     623COMMENT ON COLUMN TestBoxes.fNativeApi IS
     624  'Set if the test box does native API (NEM) tests.';
     625
    623626COMMENT ON COLUMN TestBoxes.cMbMemory IS
    624627  'The (approximate) memory size in megabytes (rounded down to nearest 4 MB).';
     
    933936COMMENT ON COLUMN VcsRevisions.sMessage IS
    934937  'The commit message.';
     938
     939COMMENT ON TABLE VcsBugReferences IS
     940  'This is for relating commits to a bug and vice versa.
     941
     942This feature isn''t so much for the test manager as a cheap way of extending
     943bug trackers without VCS integration.  We just need to parse the commit
     944messages when inserting them into the VcsRevisions table.
     945
     946Same input, updating and history considerations as VcsRevisions.';
     947
     948COMMENT ON COLUMN VcsBugReferences.sRepository IS
     949  'The version control tree name.';
     950
     951COMMENT ON COLUMN VcsBugReferences.iRevision IS
     952  'The version control tree revision number.';
     953
     954COMMENT ON COLUMN VcsBugReferences.sBugTracker IS
     955  'The bug tracker identifier - see g_kdBugTrackers in config.py.';
     956
     957COMMENT ON COLUMN VcsBugReferences.lBugNo IS
     958  'The bug number in the bug tracker.';
    935959
    936960COMMENT ON TABLE TestResultStrTab IS
  • trunk/src/VBox/ValidationKit/testmanager/db/TestManagerDatabaseInit.pgsql

    r98103 r103197  
    883883    --- Set if the test box does raw-mode tests.
    884884    fRawMode            boolean     DEFAULT NULL,
     885    -- Set if the test box does native API (NEM) tests.
     886    fNativeApi          boolean     DEFAULT NULL,
    885887    --- The (approximate) memory size in megabytes (rounded down to nearest 4 MB).
    886888    cMbMemory           bigint      DEFAULT NULL  CHECK (cMbMemory IS NULL OR cMbMemory > 0),
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette