https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 15821257a24df993b5118e6b1d4c12c0f2f1d971 authored by B2G Bumper Bot on 11 May 2015, 18:30:46 UTC
Bumping manifests a=b2g-bump
Tip revision: 1582125
collect_b2g_uss_data.sh
#!/bin/sh

if [ $# -ne 2 ]
then
    echo "Usage: `basename $0` <app title> <output_file.csv>"
    exit 1
fi

while true
do
    sample=`adb shell b2g-procrank | grep "^${1}" | awk '{ print $6 }' | sed 's/.$//'`
    echo "$sample"
    echo "$sample" >> "$2"
    sleep 1
done

back to top