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

export TEST_DIR="test_results"

echo "Test results"
echo "Basic compositor"
./psummary "test_results" ""
echo "WebRender"
./psummary "test_results" "-wr"

./perrors "test_results" ""
./perrors "test_results" "-wr"
bgstack15