test: Add hangup-call script for GCF testing

This commit is contained in:
Guillaume Zajac 2012-08-06 17:42:36 +02:00 committed by Marcel Holtmann
parent e4b284860e
commit 873df548f6
2 changed files with 16 additions and 1 deletions

View File

@ -626,7 +626,8 @@ test_scripts = test/backtrace \
test/release-and-answer \
test/release-and-swap \
test/hold-and-answer \
test/hangup-multiparty
test/hangup-multiparty \
test/hangup-call
if TEST
testdir = $(pkglibdir)/test

14
test/hangup-call Executable file
View File

@ -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()