Changeset 91177 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Sep 9, 2021 11:14:09 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioTest.cpp
r91135 r91177 1803 1803 * @returns Error if the verification failed and test verification job has fKeepGoing not set. 1804 1804 * @param pVerJob Verification job to verify value for. 1805 * @param pObjA Object handle A to verify value for.1806 * @param pObjB Object handle B to verify value for.1805 * @param pObjA Object handle A to verify value for. 1806 * @param pObjB Object handle B to verify value for. 1807 1807 * @param pszKey Key to verify. 1808 1808 * @param pszVal Value to verify. … … 1825 1825 { 1826 1826 if (RTStrCmp(szValA, szValB)) 1827 { 1828 int rc2 = audioTestErrorDescAddError(pVerJob->pErr, pVerJob->idxTest, 1829 "Values are not equal ('%s' vs. '%s')", szValA, szValB); 1830 AssertRC(rc2); 1827 1831 rc = VERR_WRONG_TYPE; /** @todo Fudge! */ 1832 } 1828 1833 1829 1834 if (pszVal) 1830 1835 { 1831 1836 if (RTStrCmp(szValA, pszVal)) 1837 { 1838 int rc2 = audioTestErrorDescAddError(pVerJob->pErr, pVerJob->idxTest, 1839 "Values don't match expected value (got '%s', expected '%s')", szValA, pszVal); 1840 AssertRC(rc2); 1832 1841 rc = VERR_WRONG_TYPE; /** @todo Fudge! */ 1842 } 1833 1843 } 1834 1844 }
Note:
See TracChangeset
for help on using the changeset viewer.