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

export TEST_DIR="test_results"

./perrors $TEST_DIR ""
./perrors $TEST_DIR "-wr"
bgstack15