summaryrefslogtreecommitdiff
path: root/test/test-health-sink
Commit message (Collapse)AuthorAgeFilesLines
* test: Python import cleanupPetri Gynther2014-01-181-3/+6
| | | | | | | | | | | | | Some test scripts use "from gi.repository import GObject" whereas others use "import gobject". gi.repository is not always available on embedded systems, so convert all instances to this format: try: from gi.repository import GObject except ImportError: import gobject as GObject Also, sort the imports in this order: system, dbus, gobject, bluezutils
* health: Append version to Health interfacesLuiz Augusto von Dentz2012-12-141-8/+14
|
* dbus: Rename to org.bluez.Adapter1Mikel Astiz2012-12-051-2/+2
| | | | | Trivially add the numbering suffix to org.bluez.Adapter according to the proposal for BlueZ 5.
* test: Use ObjectManager instead of Adapters propertyMikel Astiz2012-12-051-2/+8
| | | | | Use the objects and interfaces reported by the ObjectManager in order to list the available adapters.
* manager: remove deprecated ListAdapters() methodGustavo Padovan2012-07-041-2/+1
|
* adapter: remove deprecated ListDevices() methodGustavo Padovan2012-07-041-1/+1
|
* Update tests to be compatible with gi and python3Steve Langasek2012-06-151-11/+13
| | | | | | | | | This patch makes the python tests source-compatible with python 3, while leaving the interpreter at python 2 for now. The tradeoff is that this source is no longer compatible with python versions < 2.6, and requires gobject-introspection for the glib-based tests.
* Update test script and create a new oneJose Antonio Santos Cadenas2010-10-061-0/+83