litmus_travis.sh 332 B

1234567891011121314151617181920
  1. #!/usr/bin/env bash
  2. if [ ! -f /tmp/litmus/litmus-0.13.tar.gz ]; then
  3. echo "call setup_litmus.sh first!"
  4. exit 1
  5. fi
  6. cd /tmp/litmus/litmus-0.13/
  7. for name in basic copymove props
  8. do
  9. ./$name http://localhost:3000/
  10. if [ $? -ne 0 ] ; then
  11. echo
  12. echo "*** Litmus ($name) failed to properly complete"
  13. exit 1
  14. fi
  15. done