VirtualBox

Ignore:
Timestamp:
Sep 1, 2021 3:01:09 PM (4 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
146712
Message:

Audio/Validation Kit: Pass down the test driver's verbosity level to VKAT. ​bugref:10008

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/tests/audio/tdAudioTest.py

    r91056 r91063  
    413413            reporter.log('Using VKAT on guest at \"%s\"' % (sVkatExe));
    414414
    415             asArgs = [ sVkatExe, 'test', '-vv', '--mode', 'guest', '--probe-backends', \
     415            asArgs = [ sVkatExe, 'test', '--mode', 'guest', '--probe-backends', \
    416416                                 '--tempdir', sPathAudioTemp, '--outdir', sPathAudioOut ];
     417
     418            for _ in range(1, reporter.getVerbosity()): # Verbosity always is initialized at 1.
     419                asArgs.extend([ '-v' ]);
    417420
    418421            # Needed for NATed VMs.
     
    472475
    473476        # Build the base command line, exclude all tests by default.
    474         asArgs = [ sVkatExe, 'test', '-vv', '--mode', 'host', '--probe-backends', \
     477        asArgs = [ sVkatExe, 'test', '--mode', 'host', '--probe-backends', \
    475478                             '--tempdir', sPathAudioTemp, '--outdir', sPathAudioOut, '-a' ];
     479
     480        for _ in range(1, reporter.getVerbosity()): # Verbosity always is initialized at 1.
     481            asArgs.extend([ '-v' ]);
    476482
    477483        # ... and extend it with wanted tests.
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