-
Notifications
You must be signed in to change notification settings - Fork 0
/
benchmark-chromium.sh
executable file
·61 lines (55 loc) · 1.91 KB
/
benchmark-chromium.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env zsh
# Usage: benchmark-chromium.sh <path/to/chrome> <url> <run count> [path/to/results]
set -euo pipefail
chromium=$1; shift
url=$1; shift
run_count=$1; shift
script_dir=${0:a:h}
results=${1-$(mktemp -d)}
mkdir -p "$results"
if [ -e "$results/done" ]; then
echo ">>> $results is done; skipping"
exit
fi
for i in {01..$run_count}; do
echo ">>> $i"
# Fresh --user-data-dir to avoid interfering with user’s default profile
# and avoid disk caching. Disk caching helps control for network performance
# but it may unfairly punish Servo.
# <https://peter.sh/experiments/chromium-command-line-switches/#user-data-dir>
# <https://peter.sh/experiments/chromium-command-line-switches/#no-first-run>
profile=$(mktemp -d)
"$chromium" \
--user-data-dir="$profile" --no-first-run \
--trace-startup --trace-startup-file="$results/chrome$i.pftrace" \
--ignore-certificate-errors \
"$url" &
pid=$!
# Resize the visible Chromium window with our pid to the same size as default servoshell.
# TODO: can we have both Servo and Chromium windows at the same size before loading a page?
printf 'Resizing window'
while ! xdotool search --sync --all --pid $pid --role browser windowsize 1024 740; do
printf .
sleep 1
done
echo
"$script_dir/custom-chromium-window-commands.sh" $pid
sleep 10
# Close that window gracefully. Chromium does not write a trace file if sent a SIGTERM.
printf 'Closing window'
while kill -0 $pid 2> /dev/null; do
# No --sync here, because the window may be gone by now.
xdotool search --all --pid $pid --role browser windowquit || :
printf .
sleep 1
done
echo
while ! rm -R "$profile"; do
>&2 echo 'Failed to delete Chromium profile; will retry'
sleep 1
done
echo
echo
done
touch "$results/done"
echo "Results: $results"