summaryrefslogtreecommitdiff
path: root/print_failures
blob: 202474de8c4b361a02c77ef5f967d78409a9e005 (plain)
1
2
3
4
5
6
7
8
#!/usr/bin/bash
# Analyze and print test failures

export TEST_DIR="test_results"

echo "Test failures"
./perrors $TEST_DIR ""
./perrors $TEST_DIR "-wr"
bgstack15