123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- #include <stdio.h>
- #include <stdlib.h>
- #include <unistd.h>
- #include <string.h>
- #include <stdint.h>
- #include "Constants.h"
- #include "Logger.h"
- #include "linux/msm_ipa.h"
- #include "TestsUtils.h"
- #include "TestBase.h"
- #include "Pipe.h"
- class TLPAggregationTestFixture:public TestBase
- {
- public:
-
- TLPAggregationTestFixture();
-
- virtual bool Setup();
-
- virtual bool Teardown();
-
- static Pipe m_IpaToUsbPipeNoAgg;
- static Pipe m_IpaToUsbPipeAggr;
- static Pipe m_UsbNoAggToIpaPipeAgg;
- static Pipe m_UsbDeaggToIpaPipeNoAgg;
- static Pipe m_UsbDeaggToIpaPipeAgg;
- static Pipe m_IpaToUsbPipeAggTime;
- static Pipe m_UsbNoAggToIpaPipeAggTime;
- };
|