summaryrefslogtreecommitdiff
path: root/test/map-client
Commit message (Collapse)AuthorAgeFilesLines
* test: changes for Python3Diego Rondini2022-04-191-1/+1
| | | | | | | 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-7/+8
| | | | | | | | | | | | | 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
* test: Add -p/--push option to map-clientLuiz Augusto von Dentz2013-02-071-2/+11
| | | | | This option can be used to push messages, it takes as a parameter a file location which should contain the message in bmsg format.
* tools: Fix map-client to use new print syntaxLuiz Augusto von Dentz2013-01-141-1/+1
| | | | | | | print now requires () on newer python: File "./map-client", line 101 print err ^
* test: Make OBEX related scripts python 3 compatibleLuiz Augusto von Dentz2012-12-211-10/+12
|
* test: Update map-client to use the new interfacesLuiz Augusto von Dentz2012-12-211-26/+38
|
* test: Fix obexd object path in test scriptsJohan Hedberg2012-12-191-2/+3
|
* test: Update to new org.bluez.obex service nameMarcel Holtmann2012-12-181-5/+5
|
* test: Update map-client to use D-Bus properties interfaceLuiz Augusto von Dentz2012-12-161-2/+2
|
* test: Add test scripts from obexd repositoryMarcel Holtmann2012-12-101-0/+207