~brendan-donegan/ubuntu/raring/checkbox/0.15.4

« back to all changes in this revision

Viewing changes to plainbox/mk-interesting-graphs.sh

Tags: 0.15.1
* New upstream release (LP: #1110802)
* Launchpad automated translation updates.
* jobs/monitor.txt.in - added new job monitor/multi-head to test mulitple
  displays on desktops. 

* jobs/bluetooth.txt.in, jobs/suspend.txt.in - unblock Bluetooth hardware
  before running any Bluetooth tests to avoid these failing (LP: #1084601)
* scripts/network_reconnect_resume_time - do not fail if resume time cannot
  be calculated as this usually just means the driver does not print 
  appropriate messages to determine this. (LP: #1065009)

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
# Find some jobs from each main category
26
26
# The grep / discards stuff that does not have category/name pattern
27
27
# The rest just gets the category string
28
 
for pattern in $(plainbox --list-jobs | grep '/' | cut -d '/' -f 1 | sort | uniq); do
29
 
    plainbox -r $pattern'*' --dot | dot -Tsvg -o graphs/$pattern.svg
30
 
    plainbox -r $pattern'*' --dot --dot-resources | dot -Tsvg -o graphs/$pattern-with-resources.svg
 
28
for pattern in $(plainbox special --list-jobs | grep '/' | cut -d '/' -f 1 | sort | uniq); do
 
29
    plainbox special -r $pattern'*' --dot | dot -Tsvg -o graphs/$pattern.svg
 
30
    plainbox special -r $pattern'*' --dot --dot-resources | dot -Tsvg -o graphs/$pattern-with-resources.svg
31
31
done
32
 
plainbox --dot | dot -Tsvg -o graphs/everything-at-once.svg
33
 
plainbox --dot --dot-resources | dot -Tsvg -o graphs/everything-at-once-with-resources.svg
 
32
plainbox special --dot | dot -Tsvg -o graphs/everything-at-once.svg
 
33
plainbox special --dot --dot-resources | dot -Tsvg -o graphs/everything-at-once-with-resources.svg