test.sh 465 B

12345678910111213141516171819202122
  1. cd lib/tests/
  2. echo -e "begin test\n"
  3. echo -e "test -list\n"
  4. echo -e "-filter test\n"
  5. echo -e "-skiplists test\n"
  6. rm filter_test
  7. rm skiplist_test
  8. echo -e "build filter_test"
  9. g++ -O3 filter_test.cpp -o filter_test
  10. echo -e "build skiplist_test"
  11. g++ -O3 skiplist_test.cpp -o skiplist_test
  12. echo -e "test filter_test\n"
  13. ./filter_test
  14. if [ $? -eq 0 ]; then
  15. echo -e "test skiplist_test\n"
  16. ./skiplist_test
  17. # if [ $? -eq 0 ]; then
  18. # command3
  19. # fi
  20. fi