summaryrefslogtreecommitdiff
path: root/print_results
blob: d0bb53516bca767cf8ccac8811491167577425b8 (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"
./print_subtest "test_results" ""
echo "WebRender"
./print_subtest "test_results" "-wr"
bgstack15