~ubuntu-x-swat/xorg-server/xsmoke

« back to all changes in this revision

Viewing changes to tests/xst-xorg-conf.sh

  • Committer: Bryce Harrington
  • Date: 2008-12-06 21:41:00 UTC
  • Revision ID: bryce@canonical.com-20081206214100-95y5lrh3i1rhickr
Adding support for printing out summary info as json files

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
test_xorg_restart
35
35
 
36
36
echo "Completed all tests"
37
 
print_test_summary
 
37
if [ "${1%.json}" != "$1" ] ; then
 
38
    JSON=$1
 
39
    json_test_summary > $JSON
 
40
else
 
41
    print_test_summary
 
42
fi
 
43