summaryrefslogtreecommitdiff
path: root/android-vts-master
blob: 2485803699a945f73c28022cf7b2f206c33cec2f (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
#!/bin/bash

. $(dirname $0)/functions

PATCHES=0
if [ -n "$1" ]; then
        AOSP="$1"
else
        AOSP="`pwd`"
fi

if ! [ -d "$AOSP" ] && ! [ -d "$AOSP/bionic" ] && [ -d "$AOSP"/build ]; then
        echo "This script must be run from the AOSP source directory"
        echo "or with the AOSP source directory as its first parameter."
        exit 1
fi

###################################################################
########       LKFT PLAN overlay for CTS              #############
###################################################################
## vts_kernel_net_tests.xml: skip system properties change to avoid reboot
## https://android-review.linaro.org/c/kernel/tests/+/22001
apply --linaro kernel/tests 22001/1

## vts_kernel_proc_file_api_test.py: remove testProcSysrqTrigger to workaround reboot problem
## https://android-review.linaro.org/c/platform/test/vts/+/22000
apply --linaro --local test/vts --remote platform/test/vts   22000/1