diff -Nru lightdm-1.9.11/configure.ac lightdm-1.9.12/configure.ac --- lightdm-1.9.11/configure.ac 2014-03-13 00:41:59.000000000 +0000 +++ lightdm-1.9.12/configure.ac 2014-03-17 03:49:34.000000000 +0000 @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT(lightdm, 1.9.11) +AC_INIT(lightdm, 1.9.12) AC_CONFIG_MACRO_DIR(m4) AC_CONFIG_HEADER(config.h) AM_INIT_AUTOMAKE([1.11 no-dist-gzip dist-xz foreign]) diff -Nru lightdm-1.9.11/debian/changelog lightdm-1.9.12/debian/changelog --- lightdm-1.9.11/debian/changelog 2014-03-13 05:42:45.000000000 +0000 +++ lightdm-1.9.12/debian/changelog 2014-03-17 03:52:09.000000000 +0000 @@ -1,3 +1,16 @@ +lightdm (1.9.12-0ubuntu1) trusty; urgency=medium + + [ Robert Ancell ] + * New upstream release: + - Ensure X authority is written before X server is started (LP: #1260220) + - Activate after unlocking a logind session + + [ Gunnar Hjalmarsson ] + * debian/guest-account: + - Disable Unity shortcut hint. (LP: #1292178) + + -- Robert Ancell Mon, 17 Mar 2014 16:49:37 +1300 + lightdm (1.9.11-0ubuntu2) trusty; urgency=medium * Rebuild against Qt 5.2.1. diff -Nru lightdm-1.9.11/debian/guest-account lightdm-1.9.12/debian/guest-account --- lightdm-1.9.11/debian/guest-account 2014-02-05 10:21:38.000000000 +0000 +++ lightdm-1.9.12/debian/guest-account 2014-03-17 03:19:19.000000000 +0000 @@ -71,6 +71,10 @@ fi done + # disable Unity shortcut hint + mkdir -p "$HOME"/.cache/unity + touch "$HOME"/.cache/unity/first_run.stamp + STARTUP="$HOME"/.config/autostart/startup-commands.desktop echo "[Desktop Entry]" > $STARTUP echo "Name=Startup commands" >> $STARTUP diff -Nru lightdm-1.9.11/debian/po/zh_TW.po lightdm-1.9.12/debian/po/zh_TW.po --- lightdm-1.9.11/debian/po/zh_TW.po 2014-03-11 20:16:56.000000000 +0000 +++ lightdm-1.9.12/debian/po/zh_TW.po 2014-03-17 03:16:27.000000000 +0000 @@ -8,14 +8,14 @@ "Project-Id-Version: lightdm\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2007-05-31 08:04+0200\n" -"PO-Revision-Date: 2014-02-07 04:54+0000\n" +"PO-Revision-Date: 2014-03-16 03:54+0000\n" "Last-Translator: Walter Cheuk \n" "Language-Team: Chinese (Traditional) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-11 05:53+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-16 05:50+0000\n" +"X-Generator: Launchpad (build 16963)\n" #. Type: select #. Description @@ -29,7 +29,7 @@ msgid "" "A display manager is a program that provides graphical login capabilities " "for the X Window System." -msgstr "" +msgstr "顯示管理員為 X 視窗系統提供圖像化登入。" #. Type: select #. Description diff -Nru lightdm-1.9.11/NEWS lightdm-1.9.12/NEWS --- lightdm-1.9.11/NEWS 2014-03-13 00:42:16.000000000 +0000 +++ lightdm-1.9.12/NEWS 2014-03-17 03:49:52.000000000 +0000 @@ -1,3 +1,8 @@ +Overview of changes in lightdm 1.9.12 + + * Ensure X authority is written before X server is started + * Activate after unlocking a logind session + Overview of changes in lightdm 1.9.11 * Don't use g_hash_table_get_keys_as_array, it's a glib 2.40 feature diff -Nru lightdm-1.9.11/src/login1.c lightdm-1.9.12/src/login1.c --- lightdm-1.9.11/src/login1.c 2013-07-30 14:09:28.000000000 +0000 +++ lightdm-1.9.12/src/login1.c 2014-03-17 03:17:08.000000000 +0000 @@ -136,8 +136,28 @@ if (error) g_warning ("Error unlocking login1 session: %s", error->message); g_clear_error (&error); + if (result) + { g_variant_unref (result); + + result = g_dbus_connection_call_sync (bus, + "org.freedesktop.login1", + session_path, + "org.freedesktop.login1.Session", + "Activate", + g_variant_new ("()"), + G_VARIANT_TYPE ("()"), + G_DBUS_CALL_FLAGS_NONE, + -1, + NULL, + &error); + if (error) + g_warning ("Error activating login1 session: %s", error->message); + g_clear_error (&error); + if (result) + g_variant_unref (result); + } } g_object_unref (bus); } diff -Nru lightdm-1.9.11/src/x-authority.c lightdm-1.9.12/src/x-authority.c --- lightdm-1.9.11/src/x-authority.c 2013-10-31 18:25:25.000000000 +0000 +++ lightdm-1.9.12/src/x-authority.c 2014-03-13 02:26:38.000000000 +0000 @@ -345,6 +345,7 @@ } g_list_free (records); + fsync (output_fd); close (output_fd); if (!result) diff -Nru lightdm-1.9.11/tests/Makefile.am lightdm-1.9.12/tests/Makefile.am --- lightdm-1.9.11/tests/Makefile.am 2014-03-12 19:56:34.000000000 +0000 +++ lightdm-1.9.12/tests/Makefile.am 2014-03-17 03:42:26.000000000 +0000 @@ -111,9 +111,12 @@ test-plymouth-inactive-vt \ test-plymouth-no-seat \ test-script-hooks \ - test-script-hook-fail-display-setup \ - test-script-hook-fail-greeter-setup \ - test-script-hook-fail-session-setup \ + test-script-hook-display-setup-fail \ + test-script-hook-display-setup-missing \ + test-script-hook-greeter-setup-fail \ + test-script-hook-greeter-setup-missing \ + test-script-hook-session-setup-fail \ + test-script-hook-session-setup-missing \ test-shared-data-greeter-to-session \ test-shared-data-session-to-greeter \ test-shared-data-session-to-greeter-autologin \ @@ -161,6 +164,7 @@ test-gobject-power-no-services \ test-open-file-descriptors \ test-xdmcp-server-open-file-descriptors \ + test-multi-seat \ test-mir-autologin \ test-mir-greeter \ test-mir-session \ @@ -415,6 +419,7 @@ scripts/mir-session.conf \ scripts/mir-session-compositor-crash.conf \ scripts/mir-session-crash.conf \ + scripts/multi-seat.conf \ scripts/no-accounts-service.conf \ scripts/no-config.conf \ scripts/no-console-kit.conf \ @@ -435,9 +440,12 @@ scripts/shared-data-session-to-greeter.conf \ scripts/shared-data-session-to-greeter-autologin.conf \ scripts/script-hooks.conf \ - scripts/script-hook-fail-display-setup.conf \ - scripts/script-hook-fail-greeter-setup.conf \ - scripts/script-hook-fail-session-setup.conf \ + scripts/script-hook-display-setup-fail.conf \ + scripts/script-hook-display-setup-missing.conf \ + scripts/script-hook-greeter-setup-fail.conf \ + scripts/script-hook-greeter-setup-missing.conf \ + scripts/script-hook-session-setup-fail.conf \ + scripts/script-hook-session-setup-missing.conf \ scripts/session-stdout.conf \ scripts/session-stderr.conf \ scripts/session-stderr-multi-write.conf \ diff -Nru lightdm-1.9.11/tests/scripts/multi-seat.conf lightdm-1.9.12/tests/scripts/multi-seat.conf --- lightdm-1.9.11/tests/scripts/multi-seat.conf 1970-01-01 00:00:00.000000000 +0000 +++ lightdm-1.9.12/tests/scripts/multi-seat.conf 2014-03-17 03:42:26.000000000 +0000 @@ -0,0 +1,42 @@ +# +# Check can run two seats at once +# + +[Seat:0] +xdg-seat=seat0 + +[Seat:1] +xdg-seat=seat1 + +#?*START-DAEMON +#?RUNNER DAEMON-START + +# Seat0 starts +#?XSERVER-0 START VT=7 SEAT=seat0 +#?*XSERVER-0 INDICATE-READY +#?XSERVER-0 INDICATE-READY +#?XSERVER-0 ACCEPT-CONNECT +#?GREETER-X-0 START XDG_SEAT=seat0 XDG_VTNR=7 XDG_SESSION_CLASS=greeter +#?XSERVER-0 ACCEPT-CONNECT +#?GREETER-X-0 CONNECT-XSERVER +#?GREETER-X-0 CONNECT-TO-DAEMON +#?GREETER-X-0 CONNECTED-TO-DAEMON + +# Seat1 starts (can't use VTs) +#?XSERVER-1 START SEAT=seat1 +#?*XSERVER-1 INDICATE-READY +#?XSERVER-1 INDICATE-READY +#?XSERVER-1 ACCEPT-CONNECT +#?GREETER-X-1 START XDG_SEAT=seat1 XDG_SESSION_CLASS=greeter +#?XSERVER-1 ACCEPT-CONNECT +#?GREETER-X-1 CONNECT-XSERVER +#?GREETER-X-1 CONNECT-TO-DAEMON +#?GREETER-X-1 CONNECTED-TO-DAEMON + +# Cleanup +#?*STOP-DAEMON +#?GREETER-X-0 TERMINATE SIGNAL=15 +#?GREETER-X-1 TERMINATE SIGNAL=15 +#?XSERVER-0 TERMINATE SIGNAL=15 +#?XSERVER-1 TERMINATE SIGNAL=15 +#?RUNNER DAEMON-EXIT STATUS=0 diff -Nru lightdm-1.9.11/tests/scripts/script-hook-display-setup-fail.conf lightdm-1.9.12/tests/scripts/script-hook-display-setup-fail.conf --- lightdm-1.9.11/tests/scripts/script-hook-display-setup-fail.conf 1970-01-01 00:00:00.000000000 +0000 +++ lightdm-1.9.12/tests/scripts/script-hook-display-setup-fail.conf 2014-03-14 02:47:27.000000000 +0000 @@ -0,0 +1,25 @@ +# +# Check LightDM stops if the display setup script returns an error +# + +[SeatDefaults] +display-setup-script=test-script-hook DISPLAY-SETUP 1 + +#?*START-DAEMON +#?RUNNER DAEMON-START + +# One X server should start by default +#?XSERVER-0 START VT=7 SEAT=seat0 + +# Daemon connects when X server is ready +#?*XSERVER-0 INDICATE-READY +#?XSERVER-0 INDICATE-READY +#?XSERVER-0 ACCEPT-CONNECT + +# Setup script fails +#?SCRIPT-HOOK DISPLAY-SETUP + +#?XSERVER-0 TERMINATE SIGNAL=15 + +# Cleanup +#?RUNNER DAEMON-EXIT STATUS=1 diff -Nru lightdm-1.9.11/tests/scripts/script-hook-display-setup-missing.conf lightdm-1.9.12/tests/scripts/script-hook-display-setup-missing.conf --- lightdm-1.9.11/tests/scripts/script-hook-display-setup-missing.conf 1970-01-01 00:00:00.000000000 +0000 +++ lightdm-1.9.12/tests/scripts/script-hook-display-setup-missing.conf 2014-03-14 02:47:27.000000000 +0000 @@ -0,0 +1,24 @@ +# +# Check LightDM stops if the display setup script is missing +# + +[SeatDefaults] +display-setup-script=test-script-hook-INVALID + +#?*START-DAEMON +#?RUNNER DAEMON-START + +# One X server should start by default +#?XSERVER-0 START VT=7 SEAT=seat0 + +# Daemon connects when X server is ready +#?*XSERVER-0 INDICATE-READY +#?XSERVER-0 INDICATE-READY +#?XSERVER-0 ACCEPT-CONNECT + +# Setup script fails + +#?XSERVER-0 TERMINATE SIGNAL=15 + +# Cleanup +#?RUNNER DAEMON-EXIT STATUS=1 diff -Nru lightdm-1.9.11/tests/scripts/script-hook-fail-display-setup.conf lightdm-1.9.12/tests/scripts/script-hook-fail-display-setup.conf --- lightdm-1.9.11/tests/scripts/script-hook-fail-display-setup.conf 2014-02-26 20:50:41.000000000 +0000 +++ lightdm-1.9.12/tests/scripts/script-hook-fail-display-setup.conf 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -# -# Check LightDM stops the display if the display setup script returns an error -# - -[SeatDefaults] -display-setup-script=test-script-hook DISPLAY-SETUP 1 - -#?*START-DAEMON -#?RUNNER DAEMON-START - -# One X server should start by default -#?XSERVER-0 START VT=7 SEAT=seat0 - -# Daemon connects when X server is ready -#?*XSERVER-0 INDICATE-READY -#?XSERVER-0 INDICATE-READY -#?XSERVER-0 ACCEPT-CONNECT - -# Setup script fails -#?SCRIPT-HOOK DISPLAY-SETUP - -#?XSERVER-0 TERMINATE SIGNAL=15 - -# Cleanup -#?RUNNER DAEMON-EXIT STATUS=1 diff -Nru lightdm-1.9.11/tests/scripts/script-hook-fail-greeter-setup.conf lightdm-1.9.12/tests/scripts/script-hook-fail-greeter-setup.conf --- lightdm-1.9.11/tests/scripts/script-hook-fail-greeter-setup.conf 2014-02-26 20:50:41.000000000 +0000 +++ lightdm-1.9.12/tests/scripts/script-hook-fail-greeter-setup.conf 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -# -# Check LightDM stops the display if the display setup script returns an error -# - -[SeatDefaults] -greeter-setup-script=test-script-hook GREETER-SETUP 1 - -#?*START-DAEMON -#?RUNNER DAEMON-START - -# One X server should start by default -#?XSERVER-0 START VT=7 SEAT=seat0 - -# Daemon connects when X server is ready -#?*XSERVER-0 INDICATE-READY -#?XSERVER-0 INDICATE-READY -#?XSERVER-0 ACCEPT-CONNECT - -# Setup script fails -#?SCRIPT-HOOK GREETER-SETUP USER=.* - -#?XSERVER-0 TERMINATE SIGNAL=15 - -# Cleanup -#?RUNNER DAEMON-EXIT STATUS=1 diff -Nru lightdm-1.9.11/tests/scripts/script-hook-fail-session-setup.conf lightdm-1.9.12/tests/scripts/script-hook-fail-session-setup.conf --- lightdm-1.9.11/tests/scripts/script-hook-fail-session-setup.conf 2014-02-26 20:50:41.000000000 +0000 +++ lightdm-1.9.12/tests/scripts/script-hook-fail-session-setup.conf 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -# -# Check LightDM stops returns to the greeter if the session setup script fails -# - -[SeatDefaults] -session-setup-script=test-script-hook SESSION-SETUP 1 -autologin-user=have-password1 -user-session=default - -#?*START-DAEMON -#?RUNNER DAEMON-START - -# One X server should start by default -#?XSERVER-0 START VT=7 SEAT=seat0 - -# Daemon connects when X server is ready -#?*XSERVER-0 INDICATE-READY -#?XSERVER-0 INDICATE-READY -#?XSERVER-0 ACCEPT-CONNECT - -# Setup script fails -#?SCRIPT-HOOK SESSION-SETUP USER=have-password1 - -# Greeter starts -#?GREETER-X-0 START XDG_SEAT=seat0 XDG_VTNR=7 XDG_SESSION_CLASS=greeter -#?XSERVER-0 ACCEPT-CONNECT -#?GREETER-X-0 CONNECT-XSERVER -#?GREETER-X-0 CONNECT-TO-DAEMON -#?GREETER-X-0 CONNECTED-TO-DAEMON -#?GREETER-X-0 SELECT-USER-HINT USERNAME=have-password1 - -# Cleanup -#?*STOP-DAEMON -#?GREETER-X-0 TERMINATE SIGNAL=15 -#?XSERVER-0 TERMINATE SIGNAL=15 -#?RUNNER DAEMON-EXIT STATUS=0 diff -Nru lightdm-1.9.11/tests/scripts/script-hook-greeter-setup-fail.conf lightdm-1.9.12/tests/scripts/script-hook-greeter-setup-fail.conf --- lightdm-1.9.11/tests/scripts/script-hook-greeter-setup-fail.conf 1970-01-01 00:00:00.000000000 +0000 +++ lightdm-1.9.12/tests/scripts/script-hook-greeter-setup-fail.conf 2014-03-14 02:47:27.000000000 +0000 @@ -0,0 +1,25 @@ +# +# Check LightDM stops if the greeter setup script returns an error +# + +[SeatDefaults] +greeter-setup-script=test-script-hook GREETER-SETUP 1 + +#?*START-DAEMON +#?RUNNER DAEMON-START + +# One X server should start by default +#?XSERVER-0 START VT=7 SEAT=seat0 + +# Daemon connects when X server is ready +#?*XSERVER-0 INDICATE-READY +#?XSERVER-0 INDICATE-READY +#?XSERVER-0 ACCEPT-CONNECT + +# Setup script fails +#?SCRIPT-HOOK GREETER-SETUP USER=.* + +#?XSERVER-0 TERMINATE SIGNAL=15 + +# Cleanup +#?RUNNER DAEMON-EXIT STATUS=1 diff -Nru lightdm-1.9.11/tests/scripts/script-hook-greeter-setup-missing.conf lightdm-1.9.12/tests/scripts/script-hook-greeter-setup-missing.conf --- lightdm-1.9.11/tests/scripts/script-hook-greeter-setup-missing.conf 1970-01-01 00:00:00.000000000 +0000 +++ lightdm-1.9.12/tests/scripts/script-hook-greeter-setup-missing.conf 2014-03-14 02:47:27.000000000 +0000 @@ -0,0 +1,24 @@ +# +# Check LightDM stops if the greeter setup script is missing +# + +[SeatDefaults] +greeter-setup-script=test-script-hook-INVALID + +#?*START-DAEMON +#?RUNNER DAEMON-START + +# One X server should start by default +#?XSERVER-0 START VT=7 SEAT=seat0 + +# Daemon connects when X server is ready +#?*XSERVER-0 INDICATE-READY +#?XSERVER-0 INDICATE-READY +#?XSERVER-0 ACCEPT-CONNECT + +# Setup script fails + +#?XSERVER-0 TERMINATE SIGNAL=15 + +# Cleanup +#?RUNNER DAEMON-EXIT STATUS=1 diff -Nru lightdm-1.9.11/tests/scripts/script-hook-session-setup-fail.conf lightdm-1.9.12/tests/scripts/script-hook-session-setup-fail.conf --- lightdm-1.9.11/tests/scripts/script-hook-session-setup-fail.conf 1970-01-01 00:00:00.000000000 +0000 +++ lightdm-1.9.12/tests/scripts/script-hook-session-setup-fail.conf 2014-03-14 02:47:27.000000000 +0000 @@ -0,0 +1,36 @@ +# +# Check LightDM returns to the greeter if the session setup script fails +# + +[SeatDefaults] +session-setup-script=test-script-hook SESSION-SETUP 1 +autologin-user=have-password1 +user-session=default + +#?*START-DAEMON +#?RUNNER DAEMON-START + +# One X server should start by default +#?XSERVER-0 START VT=7 SEAT=seat0 + +# Daemon connects when X server is ready +#?*XSERVER-0 INDICATE-READY +#?XSERVER-0 INDICATE-READY +#?XSERVER-0 ACCEPT-CONNECT + +# Setup script fails +#?SCRIPT-HOOK SESSION-SETUP USER=have-password1 + +# Greeter starts +#?GREETER-X-0 START XDG_SEAT=seat0 XDG_VTNR=7 XDG_SESSION_CLASS=greeter +#?XSERVER-0 ACCEPT-CONNECT +#?GREETER-X-0 CONNECT-XSERVER +#?GREETER-X-0 CONNECT-TO-DAEMON +#?GREETER-X-0 CONNECTED-TO-DAEMON +#?GREETER-X-0 SELECT-USER-HINT USERNAME=have-password1 + +# Cleanup +#?*STOP-DAEMON +#?GREETER-X-0 TERMINATE SIGNAL=15 +#?XSERVER-0 TERMINATE SIGNAL=15 +#?RUNNER DAEMON-EXIT STATUS=0 diff -Nru lightdm-1.9.11/tests/scripts/script-hook-session-setup-missing.conf lightdm-1.9.12/tests/scripts/script-hook-session-setup-missing.conf --- lightdm-1.9.11/tests/scripts/script-hook-session-setup-missing.conf 1970-01-01 00:00:00.000000000 +0000 +++ lightdm-1.9.12/tests/scripts/script-hook-session-setup-missing.conf 2014-03-14 02:47:27.000000000 +0000 @@ -0,0 +1,35 @@ +# +# Check LightDM returns to the greeter if the session setup script is missing +# + +[SeatDefaults] +session-setup-script=test-script-hook-INVALID +autologin-user=have-password1 +user-session=default + +#?*START-DAEMON +#?RUNNER DAEMON-START + +# One X server should start by default +#?XSERVER-0 START VT=7 SEAT=seat0 + +# Daemon connects when X server is ready +#?*XSERVER-0 INDICATE-READY +#?XSERVER-0 INDICATE-READY +#?XSERVER-0 ACCEPT-CONNECT + +# Setup script fails + +# Greeter starts +#?GREETER-X-0 START XDG_SEAT=seat0 XDG_VTNR=7 XDG_SESSION_CLASS=greeter +#?XSERVER-0 ACCEPT-CONNECT +#?GREETER-X-0 CONNECT-XSERVER +#?GREETER-X-0 CONNECT-TO-DAEMON +#?GREETER-X-0 CONNECTED-TO-DAEMON +#?GREETER-X-0 SELECT-USER-HINT USERNAME=have-password1 + +# Cleanup +#?*STOP-DAEMON +#?GREETER-X-0 TERMINATE SIGNAL=15 +#?XSERVER-0 TERMINATE SIGNAL=15 +#?RUNNER DAEMON-EXIT STATUS=0 diff -Nru lightdm-1.9.11/tests/test-multi-seat lightdm-1.9.12/tests/test-multi-seat --- lightdm-1.9.11/tests/test-multi-seat 1970-01-01 00:00:00.000000000 +0000 +++ lightdm-1.9.12/tests/test-multi-seat 2014-03-17 03:42:26.000000000 +0000 @@ -0,0 +1,2 @@ +#!/bin/sh +./src/dbus-env ./src/test-runner multi-seat test-gobject-greeter diff -Nru lightdm-1.9.11/tests/test-script-hook-display-setup-fail lightdm-1.9.12/tests/test-script-hook-display-setup-fail --- lightdm-1.9.11/tests/test-script-hook-display-setup-fail 1970-01-01 00:00:00.000000000 +0000 +++ lightdm-1.9.12/tests/test-script-hook-display-setup-fail 2014-03-14 02:47:27.000000000 +0000 @@ -0,0 +1,2 @@ +#!/bin/sh +./src/dbus-env ./src/test-runner script-hook-display-setup-fail test-gobject-greeter diff -Nru lightdm-1.9.11/tests/test-script-hook-display-setup-missing lightdm-1.9.12/tests/test-script-hook-display-setup-missing --- lightdm-1.9.11/tests/test-script-hook-display-setup-missing 1970-01-01 00:00:00.000000000 +0000 +++ lightdm-1.9.12/tests/test-script-hook-display-setup-missing 2014-03-14 02:47:27.000000000 +0000 @@ -0,0 +1,2 @@ +#!/bin/sh +./src/dbus-env ./src/test-runner script-hook-display-setup-missing test-gobject-greeter diff -Nru lightdm-1.9.11/tests/test-script-hook-fail-display-setup lightdm-1.9.12/tests/test-script-hook-fail-display-setup --- lightdm-1.9.11/tests/test-script-hook-fail-display-setup 2013-07-30 14:09:28.000000000 +0000 +++ lightdm-1.9.12/tests/test-script-hook-fail-display-setup 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -#!/bin/sh -./src/dbus-env ./src/test-runner script-hook-fail-display-setup test-gobject-greeter diff -Nru lightdm-1.9.11/tests/test-script-hook-fail-greeter-setup lightdm-1.9.12/tests/test-script-hook-fail-greeter-setup --- lightdm-1.9.11/tests/test-script-hook-fail-greeter-setup 2013-07-30 14:09:28.000000000 +0000 +++ lightdm-1.9.12/tests/test-script-hook-fail-greeter-setup 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -#!/bin/sh -./src/dbus-env ./src/test-runner script-hook-fail-greeter-setup test-gobject-greeter diff -Nru lightdm-1.9.11/tests/test-script-hook-fail-session-setup lightdm-1.9.12/tests/test-script-hook-fail-session-setup --- lightdm-1.9.11/tests/test-script-hook-fail-session-setup 2013-07-30 14:09:28.000000000 +0000 +++ lightdm-1.9.12/tests/test-script-hook-fail-session-setup 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -#!/bin/sh -./src/dbus-env ./src/test-runner script-hook-fail-session-setup test-gobject-greeter diff -Nru lightdm-1.9.11/tests/test-script-hook-greeter-setup-fail lightdm-1.9.12/tests/test-script-hook-greeter-setup-fail --- lightdm-1.9.11/tests/test-script-hook-greeter-setup-fail 1970-01-01 00:00:00.000000000 +0000 +++ lightdm-1.9.12/tests/test-script-hook-greeter-setup-fail 2014-03-14 02:47:27.000000000 +0000 @@ -0,0 +1,2 @@ +#!/bin/sh +./src/dbus-env ./src/test-runner script-hook-greeter-setup-fail test-gobject-greeter diff -Nru lightdm-1.9.11/tests/test-script-hook-greeter-setup-missing lightdm-1.9.12/tests/test-script-hook-greeter-setup-missing --- lightdm-1.9.11/tests/test-script-hook-greeter-setup-missing 1970-01-01 00:00:00.000000000 +0000 +++ lightdm-1.9.12/tests/test-script-hook-greeter-setup-missing 2014-03-14 02:47:27.000000000 +0000 @@ -0,0 +1,2 @@ +#!/bin/sh +./src/dbus-env ./src/test-runner script-hook-greeter-setup-missing test-gobject-greeter diff -Nru lightdm-1.9.11/tests/test-script-hook-session-setup-fail lightdm-1.9.12/tests/test-script-hook-session-setup-fail --- lightdm-1.9.11/tests/test-script-hook-session-setup-fail 1970-01-01 00:00:00.000000000 +0000 +++ lightdm-1.9.12/tests/test-script-hook-session-setup-fail 2014-03-14 02:47:27.000000000 +0000 @@ -0,0 +1,2 @@ +#!/bin/sh +./src/dbus-env ./src/test-runner script-hook-session-setup-fail test-gobject-greeter diff -Nru lightdm-1.9.11/tests/test-script-hook-session-setup-missing lightdm-1.9.12/tests/test-script-hook-session-setup-missing --- lightdm-1.9.11/tests/test-script-hook-session-setup-missing 1970-01-01 00:00:00.000000000 +0000 +++ lightdm-1.9.12/tests/test-script-hook-session-setup-missing 2014-03-14 02:47:27.000000000 +0000 @@ -0,0 +1,2 @@ +#!/bin/sh +./src/dbus-env ./src/test-runner script-hook-session-setup-missing test-gobject-greeter