From 53cbe8d365661cf87a9a765032c06decf584f7f7 Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Sat, 17 Nov 2012 06:50:45 +0200 Subject: [PATCH] test: Add support for dynamic channels and PSMs to test-profile --- test/test-profile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/test/test-profile b/test/test-profile index 0753e6ff4..3e38f95cf 100755 --- a/test/test-profile +++ b/test/test-profile @@ -65,9 +65,11 @@ if __name__ == '__main__': action="store_true", dest="auto_connect", default=False), make_option("-P", "--PSM", action="store", - type="int", dest="psm"), + type="int", dest="psm", + default=None), make_option("-C", "--channel", action="store", - type="int", dest="channel"), + type="int", dest="channel", + default=None), make_option("-r", "--record", action="store", type="string", dest="record", default=None), @@ -94,10 +96,10 @@ if __name__ == '__main__': if (options.role): opts["Role"] = options.role - if (options.psm): + if (options.psm is not None): opts["PSM"] = dbus.UInt16(options.psm) - if (options.channel): + if (options.channel is not None): opts["Channel"] = dbus.UInt16(options.channel) if (options.record): -- 2.47.3