~noskcaj/ubuntu/wily/gdm/3.16.2

« back to all changes in this revision

Viewing changes to test-driver

  • Committer: Package Import Robot
  • Author(s): Tim Lunn, Tim Lunn, Rico Tzschichholz, Jackson Doak
  • Date: 2015-07-26 11:06:23 UTC
  • mfrom: (1.4.60)
  • Revision ID: package-import@ubuntu.com-20150726110623-0wg6y7ltup0smo0a
Tags: 3.16.1.1-0ubuntu1
[ Tim Lunn ]
* New upstream release
* debian/patches: 
  - ubuntu_nvidia_prime.patch, update for 3.16 moved prime scripts 
    into the new gdm-x-session wrapper
  - ubuntu_config_error_dialog.patch,
    90_config_comments.patch: Refreshed 
* gdm.install: path gnome-session its no longer used
* debian/control: drop build-dep on libxrandr-dev 

[ Rico Tzschichholz ]
* New upstream release
* Require gnome-session >= 3.15.90

[ Jackson Doak ]
* Drop the caribou autostart file, we start it via gnome-shell

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
scriptversion=2013-07-13.22; # UTC
5
5
 
6
 
# Copyright (C) 2011-2013 Free Software Foundation, Inc.
 
6
# Copyright (C) 2011-2014 Free Software Foundation, Inc.
7
7
#
8
8
# This program is free software; you can redistribute it and/or modify
9
9
# it under the terms of the GNU General Public License as published by
106
106
# Test script is run here.
107
107
"$@" >$log_file 2>&1
108
108
estatus=$?
 
109
 
109
110
if test $enable_hard_errors = no && test $estatus -eq 99; then
110
 
  estatus=1
 
111
  tweaked_estatus=1
 
112
else
 
113
  tweaked_estatus=$estatus
111
114
fi
112
115
 
113
 
case $estatus:$expect_failure in
 
116
case $tweaked_estatus:$expect_failure in
114
117
  0:yes) col=$red res=XPASS recheck=yes gcopy=yes;;
115
118
  0:*)   col=$grn res=PASS  recheck=no  gcopy=no;;
116
119
  77:*)  col=$blu res=SKIP  recheck=no  gcopy=yes;;
119
122
  *:*)   col=$red res=FAIL  recheck=yes gcopy=yes;;
120
123
esac
121
124
 
 
125
# Report the test outcome and exit status in the logs, so that one can
 
126
# know whether the test passed or failed simply by looking at the '.log'
 
127
# file, without the need of also peaking into the corresponding '.trs'
 
128
# file (automake bug#11814).
 
129
echo "$res $test_name (exit status: $estatus)" >>$log_file
 
130
 
122
131
# Report outcome to console.
123
132
echo "${col}${res}${std}: $test_name"
124
133