summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPatrik Flykt <patrik.flykt@linux.intel.com>2012-02-20 13:15:40 +0200
committerSamuel Ortiz <sameo@linux.intel.com>2012-02-24 23:29:49 +0100
commita1c458e02453dc5d542b8e3a46ae2b16f2fb7082 (patch)
treef0b9ff360e9f0c314797a08e6078e6f52f5f7518 /test
parent583da1aa653a92752b3ffb9fc6addf793eb616a8 (diff)
downloadconnman-a1c458e02453dc5d542b8e3a46ae2b16f2fb7082.tar.gz
connman-a1c458e02453dc5d542b8e3a46ae2b16f2fb7082.tar.bz2
connman-a1c458e02453dc5d542b8e3a46ae2b16f2fb7082.zip
test: Remove find-service as manager LookupService does not exist
Fixes BMC#24901
Diffstat (limited to 'test')
-rwxr-xr-xtest/find-service17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/find-service b/test/find-service
deleted file mode 100755
index c53e6eb0..00000000
--- a/test/find-service
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/python
-
-import sys
-import dbus
-
-if (len(sys.argv) < 2):
- print "Usage: %s <pattern>" % (sys.argv[0])
- sys.exit(1)
-
-bus = dbus.SystemBus()
-
-manager = dbus.Interface(bus.get_object('net.connman', '/'),
- 'net.connman.Manager')
-
-path = manager.LookupService(sys.argv[1])
-
-print "Service is %s" % (path)