From 20890d10e883904bc59320df4fdc1ba2854758db Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Fri, 18 Dec 2009 20:54:01 -0800 Subject: [PATCH] Add test script for new supplicant interface --- test/test-new-supplicant | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 test/test-new-supplicant diff --git a/test/test-new-supplicant b/test/test-new-supplicant new file mode 100755 index 0000000..be230dc --- /dev/null +++ b/test/test-new-supplicant @@ -0,0 +1,14 @@ +#!/usr/bin/python + +import dbus + +WPA_NAME='fi.w1.wpa_supplicant1' +WPA_INTF='fi.w1.wpa_supplicant1' +WPA_PATH='/fi/w1/wpa_supplicant1' + +bus = dbus.SystemBus() + +dummy = dbus.Interface(bus.get_object(WPA_NAME, WPA_PATH), + 'org.freedesktop.DBus.Introspectable') + +print dummy.Introspect() -- 2.7.4