Changeset 91063 in vbox for trunk/src/VBox/ValidationKit/tests
- Timestamp:
- Sep 1, 2021 3:01:09 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 146712
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/audio/tdAudioTest.py
r91056 r91063 413 413 reporter.log('Using VKAT on guest at \"%s\"' % (sVkatExe)); 414 414 415 asArgs = [ sVkatExe, 'test', '- vv', '--mode', 'guest', '--probe-backends', \415 asArgs = [ sVkatExe, 'test', '--mode', 'guest', '--probe-backends', \ 416 416 '--tempdir', sPathAudioTemp, '--outdir', sPathAudioOut ]; 417 418 for _ in range(1, reporter.getVerbosity()): # Verbosity always is initialized at 1. 419 asArgs.extend([ '-v' ]); 417 420 418 421 # Needed for NATed VMs. … … 472 475 473 476 # 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', \ 475 478 '--tempdir', sPathAudioTemp, '--outdir', sPathAudioOut, '-a' ]; 479 480 for _ in range(1, reporter.getVerbosity()): # Verbosity always is initialized at 1. 481 asArgs.extend([ '-v' ]); 476 482 477 483 # ... and extend it with wanted tests.
Note:
See TracChangeset
for help on using the changeset viewer.