* Sync with ubuntu:
* debian/rules: Make test failures fatal again
* debian/libgtk-3-0.symbols: Updated
* debian/rules: Update build-depends
* debian/libgtk-3-bin.install: Add gtk-launch: A new commandline utility
to launch an application from its desktop file
* Add autopkgtest support
* debian/patches/072_statusicon_icon_size.patch:
* Removed merged upstream
* debian/patches/074_try-harder-to-discriminate-Shift-F10-and-F10.patch:
* Removed, fixed upstream
* debian/patches/073_transparent_colors.patch
* Removed, fixed upstream
* debian/control.in: bump glib2.0 build-dep to >= 2.33.14 to trump the dodgy
version in unstable
17 lines
304 B
Bash
Executable File
17 lines
304 B
Bash
Executable File
#!/bin/sh
|
|
|
|
xvfb-run python3 <<EOF
|
|
from gi.repository import GLib, Gtk
|
|
|
|
def do_quit(user_data):
|
|
Gtk.main_quit()
|
|
|
|
dialog = Gtk.Dialog()
|
|
dialog.set_title('Test dialog')
|
|
dialog.add_button(Gtk.STOCK_OK, Gtk.ResponseType.ACCEPT)
|
|
dialog.show_all()
|
|
GLib.timeout_add_seconds(1, do_quit, None)
|
|
Gtk.main()
|
|
EOF
|
|
|