Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e5221ba3 authored by Pavlin Radoslavov's avatar Pavlin Radoslavov Committed by android-build-merger
Browse files

Run by default the 64-bit unit tests on 64-bit devices am: 6b87071b

am: 1e8a1974

Change-Id: I9266da7ce1db8a88dc864f5d107345aec5797544
parents 05b7c3c2 1e8a1974
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -102,11 +102,18 @@ if [ -n "${device}" ]; then
  adb+=( "-s" "${device}" )
fi

source ${ANDROID_BUILD_TOP}/build/envsetup.sh
target_arch=$(gettargetarch)

failed_tests=()
for spec in "${tests[@]}"
do
  name="${spec%%.*}"
  if [[ $target_arch == *"64"* ]]; then
    binary="/data/nativetest64/${name}/${name}"
  else
    binary="/data/nativetest/${name}/${name}"
  fi

  push_command=( "${adb[@]}" push {"${ANDROID_PRODUCT_OUT}",}"${binary}" )
  test_command=( "${adb[@]}" shell "${binary}" )