diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-09-10 09:53:29 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-09-10 14:18:06 +0200 |
commit | 2085dffddb36e8ac3cfe83c3f318d49c96408274 (patch) | |
tree | b8d4af8d35a3cea3b0fa41eebc406e8b7f2103fe /source4/selftest/tests.py | |
parent | fc6bb5d47a985d0215c2a8ea9a00c21abf131ad9 (diff) | |
download | samba-2085dffddb36e8ac3cfe83c3f318d49c96408274.tar.gz samba-2085dffddb36e8ac3cfe83c3f318d49c96408274.tar.xz samba-2085dffddb36e8ac3cfe83c3f318d49c96408274.zip |
lib/util/charset Run charset sets with and without the system iconv
We need to know that we can load the samba-provided modules, and that
they are correct. However, we must mark a number of tests as
knownfail due to errors in our internal iconv modules.
Andrew Bartlett
Diffstat (limited to 'source4/selftest/tests.py')
-rwxr-xr-x | source4/selftest/tests.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source4/selftest/tests.py b/source4/selftest/tests.py index 21e19554baa..f64a803a785 100755 --- a/source4/selftest/tests.py +++ b/source4/selftest/tests.py @@ -267,6 +267,12 @@ plansmbtorturetestsuite('echo.udp', 'dc:local', '//$SERVER/whatever') for t in smb4torture_testsuites("local."): plansmbtorturetestsuite(t, "none", "ncalrpc:") +# Confirm these tests with the system iconv too +for t in ["local.convert_string_handle", "local.convert_string", "local.ndr"]: + modname = "samba4.%s.iconv.modules" % t + cmdline = "%s %s %s" % (valgrindify(smb4torture), "ncalrpc: --option='iconv:native=false'", t) + plantestsuite_loadlist(modname, env, cmdline) + tdbtorture4 = binpath("tdbtorture") if os.path.exists(tdbtorture4): plantestsuite("tdb.stress", "none", valgrindify(tdbtorture4)) |