• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2if [ $TEST == "arm" ]; then
3  ./android-ndk-${NDK_VERSION}/ndk-build
4  android-wait-for-emulator
5  # adb shell input keyevent 82 &
6  adb push ./libs/* /data/local/tmp
7  adb shell /data/local/tmp/benchmark
8  adb shell /data/local/tmp/correctness_meta_gemm
9  # too slow
10  # adb shell /data/local/tmp/benchmark_meta_gemm
11fi
12if [ $TEST == "x86" ]; then
13  make -f Makefile.travis unittest
14fi
15