summaryrefslogtreecommitdiffstats
path: root/source3/script
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2014-03-31 20:47:18 +1300
committerAndrew Bartlett <abartlet@samba.org>2014-06-04 03:22:25 +0200
commit2b558f2096410b1afd2a6d5bde2862b4cc4fd587 (patch)
treeef9aa7154181d1150e89a79c9481173e8c6fe293 /source3/script
parentb2c0a6a8510a55899a20ff923ce865f1760e6984 (diff)
downloadsamba-2b558f2096410b1afd2a6d5bde2862b4cc4fd587.tar.gz
samba-2b558f2096410b1afd2a6d5bde2862b4cc4fd587.tar.xz
samba-2b558f2096410b1afd2a6d5bde2862b4cc4fd587.zip
selftest: Set winbind separator = /
This avoids a pile of shell-script escape pain, and fixes some tests. Andrew Bartlett Change-Id: Ie1d0e32ab484a5b0ddbc4073831fe6de27e38e92 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'source3/script')
-rwxr-xr-xsource3/script/tests/test_wbinfo_sids2xids_int.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/script/tests/test_wbinfo_sids2xids_int.py b/source3/script/tests/test_wbinfo_sids2xids_int.py
index 1b79e005dce..e9cd9abc69a 100755
--- a/source3/script/tests/test_wbinfo_sids2xids_int.py
+++ b/source3/script/tests/test_wbinfo_sids2xids_int.py
@@ -15,7 +15,7 @@ def flush_cache():
domain = subprocess.Popen([wbinfo, "--own-domain"],
stdout=subprocess.PIPE).communicate()[0].strip()
-domsid = subprocess.Popen([wbinfo, "-n", domain + "\\"],
+domsid = subprocess.Popen([wbinfo, "-n", domain + "/"],
stdout=subprocess.PIPE).communicate()[0]
domsid = domsid.split(' ')[0]