summaryrefslogtreecommitdiff
path: root/print_results
blob: 183ad71d83a5d5e3c77e49004068916fca414176 (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/bash
# Analyze and print general test results

export TEST_DIR="test_results"

echo "Test results"
echo "Basic compositor"
./psummary $TEST_DIR ""
echo "WebRender"
./psummary $TEST_DIR "-wr"
bgstack15