From: Dara Spieker-Doyle <dara.spieker-doyle@nokia.com>
To: ofono@ofono.org
Subject: Re: [PATCH v5, 2/5] test: Add CDMA MO Call Support
Date: Thu, 13 Jan 2011 10:18:58 -0800 [thread overview]
Message-ID: <4D2F4212.5050705@nokia.com> (raw)
In-Reply-To: <4D2E8CD8.4080201@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 2536 bytes --]
Hi Denis
On 01/12/2011 09:25 PM, ext Denis Kenzior wrote:
> Hi Dara,
>
> On 01/10/2011 07:45 PM, Dara Spieker-Doyle wrote:
>> ---
>> Makefile.am | 5 ++++-
>> test/cdma-dial-number | 25 +++++++++++++++++++++++++
>> test/cdma-hangup | 20 ++++++++++++++++++++
>> test/cdma-list-call | 31 +++++++++++++++++++++++++++++++
>> 4 files changed, 80 insertions(+), 1 deletions(-)
>> create mode 100755 test/cdma-dial-number
>> create mode 100755 test/cdma-hangup
>> create mode 100755 test/cdma-list-call
>
> This patch does not apply:
>
> Applying: test: Add CDMA MO Call Support
> error: patch failed: Makefile.am:445
> error: Makefile.am: patch does not apply
> /home/denkenz/ofono-master/.git/rebase-apply/patch:32: new blank line at
> EOF.
> +
> /home/denkenz/ofono-master/.git/rebase-apply/patch:89: new blank line at
> EOF.
> +
> Patch failed at 0001 test: Add CDMA MO Call Support
> When you have resolved this problem run "git am --resolved".
> If you would prefer to skip this patch, instead run "git am --skip".
> To restore the original branch and stop patching run "git am --abort".
>
> Also:
>
> <snip>
>
>>
>> diff --git a/test/cdma-list-call b/test/cdma-list-call
>> new file mode 100755
>> index 0000000..8a2e04e
>> --- /dev/null
>> +++ b/test/cdma-list-call
>> @@ -0,0 +1,31 @@
>> +#!/usr/bin/python
>> +
>> +import dbus
>> +
>> +bus = dbus.SystemBus()
>> +
>> +manager = dbus.Interface(bus.get_object('org.ofono', '/'),
>> + 'org.ofono.Manager')
>> +
>> +modems = manager.GetModems()
>> +
>> +for path, properties in modems:
>> + print "[ %s ]" % (path)
>> +
>> + if "org.ofono.cdma.VoiceCallManager" not in properties["Interfaces"]:
>> + continue
>> +
>> + mgr = dbus.Interface(bus.get_object('org.ofono', path),
>> + 'org.ofono.cdma.VoiceCallManager')
>> +
>> + properties = mgr.GetProperties()
>> +
>> + for key in properties.keys():
>> + if key in ["Interfaces", "Features"]:
>> + val = ""
>> + for i in properties[key]:
>> + val += i + " "
>
> You might want to remove this if statement. There are no Interfaces or
> Features properties in cdma.VoiceCallManager
>
>> + else:
>> + val = str(properties[key])
>> + print " %s = %s" % (key, val)
>> +
>
> Regards,
> -Denis
Thank you, yes I'll fix this up and resubmit. The info re: naming style
of the atom methods has been passed on to the other guys too to include
in future/current CDMA patches.
Cheers
Dara
prev parent reply other threads:[~2011-01-13 18:18 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-01-11 1:45 [PATCH v5, 2/5] test: Add CDMA MO Call Support Dara Spieker-Doyle
2011-01-13 5:25 ` Denis Kenzior
2011-01-13 18:18 ` Dara Spieker-Doyle [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4D2F4212.5050705@nokia.com \
--to=dara.spieker-doyle@nokia.com \
--cc=ofono@ofono.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.