test.sh 484 B

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