summaryrefslogtreecommitdiff
path: root/test/monitor-bluetooth
Commit message (Collapse)AuthorAgeFilesLines
* test: changes for Python3Diego Rondini2022-04-191-3/+3
| | | | | | | Remove some leftover usage of Python2 code. In particular replace iteritems() with items() to fix the following error: AttributeError: 'dbus.Dictionary' object has no attribute 'iteritems'
* test: Add SPDX License IdentifierTedd Ho-Jeong An2020-09-211-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch adds SPDX License Identifier and removes the license text. ------------------------------------- License COUNT ------------------------------------- LGPL-2.1-or-later : 35 License: LGPL-2.1-or-later test/agent.py test/bluezutils.py test/dbusdef.py test/example-advertisement test/example-endpoint test/example-gatt-client test/example-gatt-server test/example-player test/exchange-business-cards test/ftp-client test/get-managed-objects test/get-obex-capabilities test/list-devices test/list-folders test/map-client test/monitor-bluetooth test/opp-client test/pbap-client test/sap_client.py test/simple-endpoint test/simple-obex-agent test/simple-player test/test-adapter test/test-device test/test-discovery test/test-gatt-profile test/test-health test/test-health-sink test/test-hfp test/test-manager test/test-mesh test/test-nap test/test-network test/test-profile test/test-sap-server
* test: Python import cleanupPetri Gynther2014-01-181-3/+5
| | | | | | | | | | | | | 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
* dbus: Rename to org.bluez.Adapter1Mikel Astiz2012-12-051-1/+1
| | | | | Trivially add the numbering suffix to org.bluez.Adapter according to the proposal for BlueZ 5.
* dbus: Rename to org.bluez.Device1Mikel Astiz2012-12-051-1/+1
| | | | | Trivially add the numbering suffix to org.bluez.Device according to the proposal for BlueZ 5.
* test: Update monitor script to ObjectManagerMikel Astiz2012-12-051-37/+31
| | | | | Make the script compatible with the new API provided by the ObjectManager and Properties interfaces.
* Update tests to be compatible with gi and python3Steve Langasek2012-06-151-2/+4
| | | | | | | | | 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.
* Add more signal handling to monitor scriptMarcel Holtmann2008-12-201-3/+34
|
* Add script to monitor PropertyChanged signalsMarcel Holtmann2008-12-161-0/+25