OSDN Git Service

test: Add support for profile Service property
authorJohan Hedberg <johan.hedberg@intel.com>
Fri, 16 Nov 2012 13:47:31 +0000 (15:47 +0200)
committerJohan Hedberg <johan.hedberg@intel.com>
Fri, 16 Nov 2012 13:47:31 +0000 (15:47 +0200)
test/test-profile

index 1818358..6414d18 100755 (executable)
@@ -70,6 +70,9 @@ if __name__ == '__main__':
                        make_option("-r", "--record", action="store",
                                        type="string", dest="record",
                                        default=None),
+                       make_option("-S", "--service", action="store",
+                                       type="string", dest="service",
+                                       default=None),
                        ]
 
        parser = OptionParser(option_list=option_list)
@@ -99,6 +102,9 @@ if __name__ == '__main__':
        if (options.record):
                opts["ServiceRecord"] = options.record
 
+       if (options.service):
+               opts["Service"] = options.service
+
        manager.RegisterProfile(options.path, options.uuid, opts)
 
        mainloop.run()