From 1d4fb073ecd77a8289b064d4eb6bb148ba49c11b Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 13 Apr 2011 11:37:33 +1000 Subject: s3-selftest Add workaround for RAP test failure The rap.sam test reads 0xFFFFFFFF as a string in the level 2 r->HomeDir attribute, which once we start validating ASCII strings fails. This restores a unchecked dos charset for this test only, until it is determined if the client or server RAP code is at fault. Andrew Bartlett Signed-off-by: Andrew Tridgell --- source3/selftest/tests.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source3') diff --git a/source3/selftest/tests.py b/source3/selftest/tests.py index 3fd44c52ca..0a1df9ad10 100755 --- a/source3/selftest/tests.py +++ b/source3/selftest/tests.py @@ -191,6 +191,8 @@ if sub.returncode == 0: for t in tests: if t == "base.delaywrite": plansmbtorturetestsuite(t, "dc", '//$SERVER_IP/tmp -U$USERNAME%$PASSWORD --maximum-runtime=900') + if t == "rap.sam": + plansmbtorturetestsuite(t, "dc", '//$SERVER_IP/tmp -U$USERNAME%$PASSWORD --option=doscharset=ISO-8859-1') elif t == "unix.whoami": plansmbtorturetestsuite(t, "dc", '//$SERVER_IP/tmpguest -U$USERNAME%$PASSWORD') elif t == "raw.samba3posixtimedlock": -- cgit