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 make google_x86_googletest -j
      8 ./out/google_x86_googletest/libchre $1
      9