VirtualBox

Changeset 96650 in vbox


Ignore:
Timestamp:
Sep 8, 2022 6:36:38 AM (2 years ago)
Author:
vboxsync
Message:

ValidationKit/testdriver/vbox.py: Limit the default video recording file maximum file size to 195 MB (as the test manager web server currently is configured to 200 MB upload size currently; see @todo).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/testdriver/vbox.py

    r96632 r96650  
    908908        self.fRecordingAudio          = False; # Don't record audio by default.
    909909        self.cSecsRecordingMax        = 0;     # No recording time limit in seconds.
    910         self.cMbRecordingMax          = 0;     # No recording size limit in MiBs.
     910        self.cMbRecordingMax          = 195;   # The test manager web server has a configured upload limit of 200 MiBs.
     911                                               ## @todo Can we query the configured value here (via `from testmanager import config`)?
    911912
    912913        # Drop LD_PRELOAD and enable memory leak detection in LSAN_OPTIONS from vboxinstall.py
     
    18171818        reporter.log('  --vbox-recording-max-file-size <MiB>');
    18181819        reporter.log('      Limits the maximum per-file size in MiB.');
    1819         reporter.log('      Default: Unlimited.');
     1820        reporter.log('      Explicitly specify 0 for unlimited size.');
     1821        reporter.log('      Default: 195 MB.');
    18201822        if self.oTestVmSet is not None:
    18211823            self.oTestVmSet.showUsage();
Note: See TracChangeset for help on using the changeset viewer.

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