| #!/bin/bash |
| |
| # Copyright 2020 Google LLC |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # https://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| # Wrapper script to push build artifacts and run tests on an Android device. |
| # |
| # This script expects the following arguments: |
| # <test-binary> [<test-args>].. |
| # Where <test-binary> should be a path relative to /data/local/tmp/ on device. |
| # |
| # This script reads the following environment variables: |
| # - TEST_ANDROID_ABS_DIR: the absolute path on Android device for the build |
| # artifacts. |
| # - TEST_DATA: optional; the data file to push to the Android device. |
| # - TEST_EXECUTABLE: the executable file to push to the Android device. |
| # - TEST_TMPDIR: optional; temporary directory on the Android device for |
| # running tests. |
| # |
| # This script pushes $TEST_EXECUTABLE and $TEST_DATA onto the device |
| # under $TEST_ANDROID_ABS_DIR/ before running <test-binary> with all |
| # <test-args> under /data/local/tmp. |
| |
| set -x |
| set -e |
| |
| adb push $TEST_EXECUTABLE $TEST_ANDROID_ABS_DIR/$(basename $TEST_EXECUTABLE) |
| |
| if [ -n "$TEST_DATA" ]; then |
| adb push $TEST_DATA $TEST_ANDROID_ABS_DIR/$(basename $TEST_DATA) |
| fi |
| |
| if [ -n "$TEST_TMPDIR" ]; then |
| adb shell "mkdir -p $TEST_TMPDIR" |
| tmpdir="TEST_TMPDIR=$TEST_TMPDIR" |
| else |
| tmpdir="" |
| fi |
| |
| # Execute the command with `adb shell` under `/data/local/tmp`. |
| # We set LD_LIBRARY_PATH for the command so that it can use libvulkan.so under |
| # /data/local/tmp when running Vulkan tests. This is to workaround an Android |
| # issue where linking to libvulkan.so is broken under /data/local/tmp. |
| # See https://android.googlesource.com/platform/system/linkerconfig/+/296da5b1eb88a3527ee76352c2d987f82f3252eb. |
| # This requires copying the vendor vulkan implementation under |
| # /vendor/lib[64]/hw/vulkan.*.so to /data/local/tmp/libvulkan.so. |
| adb shell "cd /data/local/tmp && LD_LIBRARY_PATH=/data/local/tmp $tmpdir $*" |
| |
| if [ -n "$TEST_TMPDIR" ]; then |
| adb shell "rm -rf $TEST_TMPDIR" |
| fi |