| 12345678910111213141516171819202122 |
- #!/bin/bash
- # Script to run the unit-tests for the MRU Vim plugin
- VIM=/usr/bin/vim
- VIM_CMD="$VIM -N -u NONE -U NONE -i NONE"
- $VIM_CMD -S unit_tests.vim
- echo "MRU unit test results"
- cat results.txt
- echo
- grep FAIL results.txt > /dev/null 2>&1
- if [ $? -eq 0 ]
- then
- echo "ERROR: Some test(s) failed."
- exit 1
- fi
- echo "SUCCESS: All the tests passed."
- exit 0
|