summaryrefslogtreecommitdiff
path: root/print_results
blob: d0b13079e5aba27e52b3dbbc808c6734f4356b42 (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