xref: /aosp_15_r20/tools/aadevtools/validation/test.sh (revision b32fbb6340ee6fe4a25d7b39d84085c084465677)
1*b32fbb63SXin Li#!/bin/bash
2*b32fbb63SXin Li
3*b32fbb63SXin Li# Copyright (C) 2021 The Android Open Source Project
4*b32fbb63SXin Li#
5*b32fbb63SXin Li# Licensed under the Apache License, Version 2.0 (the "License");
6*b32fbb63SXin Li# you may not use this file except in compliance with the License.
7*b32fbb63SXin Li# You may obtain a copy of the License at
8*b32fbb63SXin Li#
9*b32fbb63SXin Li#      http://www.apache.org/licenses/LICENSE-2.0
10*b32fbb63SXin Li#
11*b32fbb63SXin Li# Unless required by applicable law or agreed to in writing, software
12*b32fbb63SXin Li# distributed under the License is distributed on an "AS IS" BASIS,
13*b32fbb63SXin Li# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14*b32fbb63SXin Li# See the License for the specific language governing permissions and
15*b32fbb63SXin Li# limitations under the License.
16*b32fbb63SXin Li
17*b32fbb63SXin Liecho test install new app release
18*b32fbb63SXin Li
19*b32fbb63SXin LiappDir=$1
20*b32fbb63SXin LirenameCsv=$2
21*b32fbb63SXin Li
22*b32fbb63SXin Liecho ${appDir}
23*b32fbb63SXin Liecho ${renameCsv}
24*b32fbb63SXin Licat ${renameCsv}
25*b32fbb63SXin Liadb shell getprop | grep finger
26*b32fbb63SXin Li
27*b32fbb63SXin Li./batch_install_app.sh ${appDir}
28*b32fbb63SXin Li./batch_check_permission.sh ${appDir} ${renameCsv}
29