Remove references of VtsHalHidlTargetTestBase am: fdbc494c69
Change-Id: I7750e55d53f7906016cb916efee3775e44dcca76
This commit is contained in:
commit
c7c37ff2e2
13 changed files with 23 additions and 23 deletions
14
Android.bp
14
Android.bp
|
@ -21,7 +21,7 @@ cc_defaults {
|
|||
|
||||
// Lists all dependencies that can *not* be expected on the device.
|
||||
static_libs: [
|
||||
"VtsHalHidlTargetTestBase",
|
||||
"VtsHalHidlTestUtils",
|
||||
"libhidl-gen-utils",
|
||||
],
|
||||
|
||||
|
@ -47,3 +47,15 @@ cc_defaults {
|
|||
|
||||
require_root: true,
|
||||
}
|
||||
|
||||
// TODO: Remove this after all vts tests under vendor/qcom are converted to
|
||||
// parameterized gtest.
|
||||
cc_defaults {
|
||||
name: "Vts10HalTargetTestDefaults",
|
||||
defaults: [
|
||||
"VtsHalTargetTestDefaults",
|
||||
],
|
||||
static_libs: [
|
||||
"VtsHalHidlTargetTestBase",
|
||||
],
|
||||
}
|
||||
|
|
|
@ -25,8 +25,5 @@ cc_library_static {
|
|||
"-Wextra",
|
||||
"-Werror",
|
||||
],
|
||||
static_libs: [
|
||||
"VtsHalHidlTargetTestBase",
|
||||
],
|
||||
group_static_libs: true,
|
||||
}
|
||||
|
|
|
@ -14,8 +14,6 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include <VtsHalHidlTargetTestBase.h>
|
||||
#include <VtsHalHidlTargetTestEnvBase.h>
|
||||
#include <android-base/logging.h>
|
||||
#include <android/hardware/tv/tuner/1.0/IDemux.h>
|
||||
#include <android/hardware/tv/tuner/1.0/ITuner.h>
|
||||
|
@ -54,4 +52,4 @@ class DemuxTests {
|
|||
static AssertionResult success() { return ::testing::AssertionSuccess(); }
|
||||
|
||||
sp<IDemux> mDemux;
|
||||
};
|
||||
};
|
||||
|
|
|
@ -14,8 +14,6 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include <VtsHalHidlTargetTestBase.h>
|
||||
#include <VtsHalHidlTargetTestEnvBase.h>
|
||||
#include <android-base/logging.h>
|
||||
#include <android/hardware/tv/tuner/1.0/IFilter.h>
|
||||
#include <android/hardware/tv/tuner/1.0/IFilterCallback.h>
|
||||
|
@ -64,6 +62,8 @@ using android::hardware::tv::tuner::V1_0::Result;
|
|||
|
||||
using ::testing::AssertionResult;
|
||||
|
||||
using namespace std;
|
||||
|
||||
enum FilterEventType : uint8_t {
|
||||
UNDEFINED,
|
||||
SECTION,
|
||||
|
@ -223,4 +223,4 @@ class FilterTests {
|
|||
vector<uint32_t> mUsedFilterIds;
|
||||
|
||||
uint32_t mFilterId = -1;
|
||||
};
|
||||
};
|
||||
|
|
|
@ -14,8 +14,6 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include <VtsHalHidlTargetTestBase.h>
|
||||
#include <VtsHalHidlTargetTestEnvBase.h>
|
||||
#include <android-base/logging.h>
|
||||
#include <android/hardware/tv/tuner/1.0/IFrontend.h>
|
||||
#include <android/hardware/tv/tuner/1.0/IFrontendCallback.h>
|
||||
|
@ -66,6 +64,8 @@ using android::hardware::tv::tuner::V1_0::Result;
|
|||
|
||||
using ::testing::AssertionResult;
|
||||
|
||||
using namespace std;
|
||||
|
||||
#define INVALID_ID -1
|
||||
#define WAIT_TIMEOUT 3000000000
|
||||
|
||||
|
|
|
@ -38,6 +38,8 @@ using android::hardware::tv::tuner::V1_0::FrontendDvbtTransmissionMode;
|
|||
using android::hardware::tv::tuner::V1_0::FrontendSettings;
|
||||
using android::hardware::tv::tuner::V1_0::FrontendType;
|
||||
|
||||
using namespace std;
|
||||
|
||||
typedef enum {
|
||||
TS_VIDEO0,
|
||||
TS_VIDEO1,
|
||||
|
|
|
@ -16,13 +16,12 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include <functional>
|
||||
#include <tuple>
|
||||
#include <type_traits>
|
||||
#include <utility>
|
||||
|
||||
#include <VtsHalHidlTargetTestBase.h>
|
||||
|
||||
namespace {
|
||||
namespace detail {
|
||||
template <typename>
|
||||
|
|
|
@ -16,8 +16,6 @@
|
|||
|
||||
#include <android/log.h>
|
||||
|
||||
#include <VtsHalHidlTargetTestBase.h>
|
||||
|
||||
#include <wifi_system/interface_tool.h>
|
||||
|
||||
#include "wifi_hidl_call_util.h"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include <VtsHalHidlTargetTestBase.h>
|
||||
#include <android-base/logging.h>
|
||||
|
||||
#include <android/hidl/manager/1.0/IServiceManager.h>
|
||||
|
@ -148,4 +147,4 @@ bool is_1_1(const sp<IHostapd>& hostapd) {
|
|||
sp<::android::hardware::wifi::hostapd::V1_1::IHostapd> hostapd_1_1 =
|
||||
::android::hardware::wifi::hostapd::V1_1::IHostapd::castFrom(hostapd);
|
||||
return hostapd_1_1.get() != nullptr;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include <VtsHalHidlTargetTestBase.h>
|
||||
#include <android-base/logging.h>
|
||||
#include <cutils/properties.h>
|
||||
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include <VtsHalHidlTargetTestBase.h>
|
||||
#include <android-base/logging.h>
|
||||
|
||||
#include "supplicant_hidl_test_utils.h"
|
||||
|
|
|
@ -16,8 +16,6 @@
|
|||
|
||||
#include <android-base/logging.h>
|
||||
|
||||
#include <VtsHalHidlTargetTestBase.h>
|
||||
|
||||
#include <VtsCoreUtil.h>
|
||||
#include <android/hardware/wifi/1.0/IWifi.h>
|
||||
#include <android/hardware/wifi/supplicant/1.2/ISupplicantP2pIface.h>
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include <VtsHalHidlTargetTestBase.h>
|
||||
#include <android-base/logging.h>
|
||||
|
||||
#include "supplicant_hidl_test_utils.h"
|
||||
|
|
Loading…
Reference in a new issue