12b1020d6d79f97e6bd9268453ad30282a86e9304Paul Stewart/*
22b1020d6d79f97e6bd9268453ad30282a86e9304Paul Stewart * Copyright (C) 2017 The Android Open Source Project
32b1020d6d79f97e6bd9268453ad30282a86e9304Paul Stewart *
42b1020d6d79f97e6bd9268453ad30282a86e9304Paul Stewart * Licensed under the Apache License, Version 2.0 (the "License");
52b1020d6d79f97e6bd9268453ad30282a86e9304Paul Stewart * you may not use this file except in compliance with the License.
62b1020d6d79f97e6bd9268453ad30282a86e9304Paul Stewart * You may obtain a copy of the License at
72b1020d6d79f97e6bd9268453ad30282a86e9304Paul Stewart *
82b1020d6d79f97e6bd9268453ad30282a86e9304Paul Stewart *      http://www.apache.org/licenses/LICENSE-2.0
92b1020d6d79f97e6bd9268453ad30282a86e9304Paul Stewart *
102b1020d6d79f97e6bd9268453ad30282a86e9304Paul Stewart * Unless required by applicable law or agreed to in writing, software
112b1020d6d79f97e6bd9268453ad30282a86e9304Paul Stewart * distributed under the License is distributed on an "AS IS" BASIS,
122b1020d6d79f97e6bd9268453ad30282a86e9304Paul Stewart * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
132b1020d6d79f97e6bd9268453ad30282a86e9304Paul Stewart * See the License for the specific language governing permissions and
142b1020d6d79f97e6bd9268453ad30282a86e9304Paul Stewart * limitations under the License.
152b1020d6d79f97e6bd9268453ad30282a86e9304Paul Stewart */
162b1020d6d79f97e6bd9268453ad30282a86e9304Paul Stewart
172b1020d6d79f97e6bd9268453ad30282a86e9304Paul Stewart#include <android-base/logging.h>
182b1020d6d79f97e6bd9268453ad30282a86e9304Paul Stewart
192b1020d6d79f97e6bd9268453ad30282a86e9304Paul Stewart#include <VtsHalHidlTargetTestBase.h>
202b1020d6d79f97e6bd9268453ad30282a86e9304Paul Stewart
212b1020d6d79f97e6bd9268453ad30282a86e9304Paul Stewartint main(int argc, char** argv) {
222b1020d6d79f97e6bd9268453ad30282a86e9304Paul Stewart    ::testing::InitGoogleTest(&argc, argv);
232b1020d6d79f97e6bd9268453ad30282a86e9304Paul Stewart    int status = RUN_ALL_TESTS();
242b1020d6d79f97e6bd9268453ad30282a86e9304Paul Stewart    LOG(INFO) << "Test result = " << status;
252b1020d6d79f97e6bd9268453ad30282a86e9304Paul Stewart    return status;
262b1020d6d79f97e6bd9268453ad30282a86e9304Paul Stewart}
27