2
0

run_tests.sh 424 B

123456789101112131415161718192021222324252627
  1. #!/bin/bash
  2. # verbose, skittish
  3. set -ex
  4. # run valgrind?
  5. VG="valgrind --error-exitcode=149 --leak-check=full --show-reachable=yes"
  6. # make sure we're up-to-date
  7. make
  8. # runs, not certaion wht it does yet
  9. ${VG} ./tcodec2
  10. ${VG} ./tinterp
  11. ${VG} ./tquant
  12. # these fail, missing arguments
  13. ${VG} ./extract
  14. ${VG} ./genlsp
  15. ${VG} ./genres
  16. ${VG} ./scalarlsptest
  17. ${VG} ./tnlp
  18. ${VG} ./vq_train_jvm
  19. ${VG} ./vqtrain
  20. ${VG} ./vqtrainjnd