VirtualBox

Changeset 89215 in vbox for trunk/src/VBox/ValidationKit


Ignore:
Timestamp:
May 21, 2021 10:47:13 AM (4 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
144557
Message:

Audio/ValKit: Moved audio test execution service (ATS) data into an own instance struct. bugref:10008

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/utils/audio/vkat.cpp

    r89213 r89215  
    24902490static int audioTestDoSelftestSvc(void)
    24912491{
    2492     int rc = AudioTestSvcInit();
     2492    ATSSERVER Srv;
     2493    int rc = AudioTestSvcInit(&Srv);
    24932494    if (RT_SUCCESS(rc))
    24942495    {
     2496        rc = AudioTestSvcStart(&Srv);
    24952497        if (RT_SUCCESS(rc))
    24962498        {
    2497             rc = AudioTestSvcStart();
     2499            ATSCLIENT Conn;
     2500            rc = AudioTestSvcClientConnect(&Conn, NULL);
    24982501            if (RT_SUCCESS(rc))
    24992502            {
    2500                 ATSCLIENT Conn;
    2501                 rc = AudioTestSvcClientConnect(&Conn);
    2502                 if (RT_SUCCESS(rc))
    2503                 {
    2504                     rc = AudioTestSvcClientClose(&Conn);
    2505                 }
     2503                rc = AudioTestSvcClientClose(&Conn);
    25062504            }
     2505
     2506            int rc2 = AudioTestSvcShutdown(&Srv);
     2507            if (RT_SUCCESS(rc))
     2508                rc = rc2;
    25072509        }
    25082510    }
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