From 99efe8480ebb0493be93a6ca5f77a1fe640f3be0 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 3 Dec 2012 02:25:40 +0100 Subject: s3:selftest: extend sids2xids test script to cope with "ID_TYPE_BOTH mappings Signed-off-by: Michael Adam Reviewed-by: Stefan Metzmacher Autobuild-User(master): Michael Adam Autobuild-Date(master): Mon Dec 3 10:47:17 CET 2012 on sn-devel-104 --- source3/script/tests/test_wbinfo_sids2xids_int.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/script/tests') diff --git a/source3/script/tests/test_wbinfo_sids2xids_int.py b/source3/script/tests/test_wbinfo_sids2xids_int.py index 8826f53f1f..1b79e005dc 100755 --- a/source3/script/tests/test_wbinfo_sids2xids_int.py +++ b/source3/script/tests/test_wbinfo_sids2xids_int.py @@ -34,7 +34,7 @@ gids=[] for line in sids2xids.split('\n'): result = line.split(' ')[2:] - if result[0] == 'gid': + if result[0] == 'gid' or result[0] == 'uid/gid': gid = result[1] else: gid = '' -- cgit