blob: e8b7d490289ffd38d1d8769f67030acf98dd495a (
plain)
1
2
3
4
5
6
7
|
#!/usr/bin/env bash
# download shunit2 in order to run tests:
# curl -L "https://dl.dropboxusercontent.com/u/7916095/shunit2-2.0.3.tgz" | tar zx --overwrite
cd test
./test_suite.sh | tee /dev/stderr | grep -q 'success rate: 100%'
|