Changeset 91934 in vbox for trunk/src/VBox/ValidationKit/utils
- Timestamp:
- Oct 21, 2021 10:49:03 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 147740
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/utils/audio/vkat.cpp
r91911 r91934 948 948 true /* fEnabledIn */, true /* fEnabledOut */, TstEnv.IoOpts.fWithDrvAudio); /** @todo Make in/out configurable, too. */ 949 949 if (RT_FAILURE(rc)) 950 return RTMsgErrorExit(RTEXITCODE_ SYNTAX, "Unable to init driver stack: %Rrc\n", rc);950 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Unable to init driver stack: %Rrc\n", rc); 951 951 952 952 PPDMAUDIOHOSTDEV pDev; 953 953 rc = audioTestDevicesEnumerateAndCheck(&DrvStack, TstEnv.szDev, &pDev); 954 954 if (RT_FAILURE(rc)) 955 return RTMsgErrorExit(RTEXITCODE_ SYNTAX, "Enumerating device(s) failed: %Rrc\n", rc);955 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Enumerating device(s) failed: %Rrc\n", rc); 956 956 957 957 /* For now all tests have the same test environment and driver stack. */
Note:
See TracChangeset
for help on using the changeset viewer.