Home | History | Annotate | Download | only in chre
      1 #!/bin/bash
      2 
      3 # Quit if any command produces an error.
      4 set -e
      5 
      6 # Build and run the CHRE unit test binary.
      7 JOB_COUNT=$((`grep -c ^processor /proc/cpuinfo`))
      8 
      9 make google_x86_googletest_debug -j$JOB_COUNT
     10 ./out/google_x86_googletest_debug/libchre $1
     11