blob: 1b220b039e03a24ea0edbaa106310ed22f1e6e3f (
about) (
plain)
1
2
3
4
5
6
|
#!/usr/bin/env bash
# The "tr" command fixes the ^M characters in the output.
cd test
./test_suite.sh 2>&1 | tr '\r' '\n' > test.log
cat test.log | grep -q 'success rate: 100%'
|