run_tests.sh 159 B

12345678910111213
  1. #!/bin/bash
  2. ./compile.sh
  3. ./build/server &
  4. for i in $(find ./tests -name '*.txt')
  5. do
  6. ./build/client localhost $i
  7. done
  8. kill -9 $(pidof server)
  9. rm *.rpcdb