From 9efcb970ce023f9bedbe8160be0226fd14367878 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Mon, 26 Nov 2012 16:39:37 +0200 Subject: [PATCH] build: Remove test-network test-network is no longer needed since Network interface does not have Connect/Disconnect methods anymore and similar functionality is already provided by test-device. --- Makefile.tools | 5 ++-- test/test-network | 59 ----------------------------------------------- 2 files changed, 2 insertions(+), 62 deletions(-) delete mode 100755 test/test-network diff --git a/Makefile.tools b/Makefile.tools index fdc0dec9b..689b4d2f2 100644 --- a/Makefile.tools +++ b/Makefile.tools @@ -202,9 +202,8 @@ 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-network \ - test/simple-agent test/simple-service test/simple-endpoint \ - test/test-sap-server \ + test/test-device test/test-service test/simple-agent \ + test/simple-service test/simple-endpoint test/test-sap-server \ test/test-oob test/test-attrib test/test-proximity \ test/test-thermometer test/test-profile test/test-health \ test/test-health-sink test/service-record.dtd \ diff --git a/test/test-network b/test/test-network deleted file mode 100755 index 2ade58459..000000000 --- a/test/test-network +++ /dev/null @@ -1,59 +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
[service]" % (sys.argv[0])) - sys.exit(1) - -address = args[0] - -if (len(args) < 2): - service = "panu" -else: - service = args[1] - -device = adapter.FindDevice(address) - -network = dbus.Interface(bus.get_object("org.bluez", device), - "org.bluez.Network") - -iface = network.Connect(service) - -print("Connected %s to %s" % (device, address)) - -print("Press CTRL-C to disconnect") - -try: - time.sleep(1000) - print("Terminating connection") -except: - pass - -network.Disconnect() -- 2.47.3