summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudio Takahasi <claudio.takahasi@openbossa.org>2012-07-24 10:08:41 -0300
committerJohan Hedberg <johan.hedberg@intel.com>2012-07-24 15:37:43 +0200
commit9f1d36c8d5b66b6afea8585697cd9a32387cb5e0 (patch)
treee4fca806b158387efe02a5662d2911c030af82ec
parent93f4607f6e01c8067d3a8f7bb03ba8a9d37ab2ca (diff)
downloadbluez-9f1d36c8d5b66b6afea8585697cd9a32387cb5e0.tar.gz
serial: Remove serial test script
-rw-r--r--Makefile.tools10
-rwxr-xr-xtest/test-serial58
2 files changed, 5 insertions, 63 deletions
diff --git a/Makefile.tools b/Makefile.tools
index fccac2d2f..4c70db172 100644
--- a/Makefile.tools
+++ b/Makefile.tools
@@ -218,11 +218,11 @@ endif
EXTRA_DIST += test/sap_client.py test/hsplay test/hsmicro \
test/dbusdef.py test/monitor-bluetooth test/list-devices \
test/test-discovery test/test-manager test/test-adapter \
- test/test-device test/test-service test/test-serial \
- test/test-telephony test/test-network test/simple-agent \
- test/simple-service test/simple-endpoint test/test-audio \
- test/test-input test/test-sap-server test/test-oob \
- test/test-attrib test/test-proximity test/test-thermometer \
+ test/test-device test/test-service test/test-telephony \
+ test/test-network test/simple-agent test/simple-service \
+ test/simple-endpoint test/test-audio test/test-input \
+ test/test-sap-server test/test-oob test/test-attrib \
+ test/test-proximity test/test-thermometer \
test/test-serial-proxy test/test-health test/test-health-sink \
test/service-record.dtd test/service-did.xml \
test/service-spp.xml test/service-opp.xml test/service-ftp.xml \
diff --git a/test/test-serial b/test/test-serial
deleted file mode 100755
index 8858dbdd9..000000000
--- a/test/test-serial
+++ /dev/null
@@ -1,58 +0,0 @@
-#!/usr/bin/python
-
-from __future__ import absolute_import, print_function, unicode_literals
-
-import sys
-import time
-import dbus
-from optparse import OptionParser, make_option
-
-bus = dbus.SystemBus()
-
-manager = dbus.Interface(bus.get_object("org.bluez", "/"),
- "org.bluez.Manager")
-option_list = [
- make_option("-i", "--device", action="store",
- type="string", dest="dev_id"),
- ]
-parser = OptionParser(option_list=option_list)
-
-(options, args) = parser.parse_args()
-
-if options.dev_id:
- adapter_path = manager.FindAdapter(options.dev_id)
-else:
- adapter_path = manager.DefaultAdapter()
-
-adapter = dbus.Interface(bus.get_object("org.bluez", adapter_path),
- "org.bluez.Adapter")
-
-if (len(args) < 1):
- print("Usage: %s <address> [service]" % (sys.argv[0]))
- sys.exit(1)
-
-address = args[0]
-
-if (len(args) < 2):
- service = "spp"
-else:
- service = args[1]
-
-path = adapter.FindDevice(address)
-
-serial = dbus.Interface(bus.get_object("org.bluez", path),
- "org.bluez.Serial")
-
-node = serial.Connect(service)
-
-print("Connected %s to %s" % (node, address))
-
-print("Press CTRL-C to disconnect")
-
-try:
- time.sleep(1000)
- print("Terminating connection")
-except:
- pass
-
-serial.Disconnect(node)