summaryrefslogtreecommitdiff
path: root/tests/twisted/account-storage/default-keyring-storage.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/twisted/account-storage/default-keyring-storage.py')
-rw-r--r--tests/twisted/account-storage/default-keyring-storage.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/twisted/account-storage/default-keyring-storage.py b/tests/twisted/account-storage/default-keyring-storage.py
index bab0b726..c1230788 100644
--- a/tests/twisted/account-storage/default-keyring-storage.py
+++ b/tests/twisted/account-storage/default-keyring-storage.py
@@ -266,6 +266,10 @@ DisplayName=New and improved account
if __name__ == '__main__':
ctl_dir = os.environ['MC_ACCOUNT_DIR']
+ try:
+ os.mkdir(ctl_dir, 0700)
+ except OSError:
+ pass
start_gnome_keyring_daemon(ctl_dir)
exec_test(test, {}, timeout=10)
stop_gnome_keyring_daemon()