Home | History | Annotate | Download | only in scripts
      1 #!/bin/bash
      2 if [ $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
     11 fi
     12 if [ $TEST == "x86" ]; then
     13   make -f Makefile.travis unittest
     14 fi
     15