summaryrefslogtreecommitdiffstats
path: root/test/hangup-call
diff options
context:
space:
mode:
Diffstat (limited to 'test/hangup-call')
-rwxr-xr-xtest/hangup-call14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/hangup-call b/test/hangup-call
new file mode 100755
index 00000000..4c46ec04
--- /dev/null
+++ b/test/hangup-call
@@ -0,0 +1,14 @@
+#!/usr/bin/python
+
+import sys
+import dbus
+
+bus = dbus.SystemBus()
+
+if (len(sys.argv) < 2):
+ print "Usage: %s [ Call Path ]" % (sys.argv[0])
+ sys.exit(1)
+
+call = dbus.Interface(bus.get_object('org.ofono', sys.argv[1]),
+ 'org.ofono.VoiceCall')
+call.Hangup()