blob: 6b0b4e86fce2d922caff1f1dc12a942961f4d6b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
// ------------------------------------------------------------------------------
//
// Copyright (C) Microsoft Corporation. All rights reserved.
//
// Module Name:
//
// comptest.cpp
//
// Abstract:
//
// Implementation file for test cases
//
// -------------------------------------------------------------------------------
#include "PreComp.h"
#include "WaveTestTaef.h"
#include "tests.h"
// ------------------------------------------------------------------------------
// Test_VerifyPinSupportsPullMode: Test the requirement that new drivers must be WaveRT and WaveRT drivers must support event driven audio streaming technology.
void Test_VerifyPinWaveRTConformance(void)
{
CHalfApp* pHalfApp = g_pWaveTest->m_pHalf;
BOOL bIsRTCapable = false;
BOOL bIsEventCapable = false;
VERIFY_SUCCEEDED(pHalfApp->InitializeEndpoint());
VERIFY_SUCCEEDED(pHalfApp->m_pAudioDeviceEndpoint->GetRTCaps(&bIsRTCapable));
// Check for our new requirement - new PortCls drivers must be WaveRT.
// For other old drivers that are not WaveRT, may issue Errata to cover the failure.
if (pHalfApp->m_bIsPortCls)
{
VERIFY_IS_TRUE(bIsRTCapable);
}
// Only require event driven for WaveRT drivers
if (bIsRTCapable)
{
VERIFY_SUCCEEDED(pHalfApp->m_pAudioDeviceEndpoint->GetEventDrivenCapable(&bIsEventCapable));
VERIFY_IS_TRUE(bIsEventCapable);
}
}
|