blob: 2485803699a945f73c28022cf7b2f206c33cec2f [file] [log] [blame]
#!/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