https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 30f700013becebe314e173da23f5e6409fec2696 authored by B2G Bumper Bot on 29 June 2015, 19:25:58 UTC
Bumping manifests a=b2g-bump
Tip revision: 30f7000
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