Chromium Code Reviews| Index: test/rm-profile |
| diff --git a/test/rm-profile b/test/rm-profile |
| new file mode 100755 |
| index 0000000000000000000000000000000000000000..af175c643255da05987106ea5b27628a03cea019 |
| --- /dev/null |
| +++ b/test/rm-profile |
| @@ -0,0 +1,10 @@ |
| +#!/usr/bin/python |
| + |
| +import dbus, flimflam, string, sys |
| + |
| +if (len(sys.argv) < 2): |
| + print "Profile ident required" |
| + sys.exit(1) |
| + |
| +flim = flimflam.FlimFlam(dbus.SystemBus()) |
| +flim.RemoveProfile(sys.argv[1]) |