diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-09-10 15:51:45 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-09-10 15:45:42 +0200 |
commit | 86b1f45a5e763893a038bf854dfe735c86f3f30b (patch) | |
tree | f7c4303294ed02509c3603fbe064edc624eb78d2 /lib/util/charset | |
parent | 142f871cef8f1b239d01d65dfeba3331cff0e166 (diff) | |
download | samba-86b1f45a5e763893a038bf854dfe735c86f3f30b.tar.gz samba-86b1f45a5e763893a038bf854dfe735c86f3f30b.tar.bz2 samba-86b1f45a5e763893a038bf854dfe735c86f3f30b.zip |
lib/util/charset: the comparsion must be against our charset modules
There is little point testing this against the system iconv.
Andrew Bartlett
Autobuild-User: Andrew Bartlett <abartlet@samba.org>
Autobuild-Date: Sat Sep 10 15:45:42 CEST 2011 on sn-devel-104
Diffstat (limited to 'lib/util/charset')
-rw-r--r-- | lib/util/charset/tests/iconv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/util/charset/tests/iconv.c b/lib/util/charset/tests/iconv.c index 62b8d37915..48702e9c50 100644 --- a/lib/util/charset/tests/iconv.c +++ b/lib/util/charset/tests/iconv.c @@ -158,14 +158,14 @@ static bool test_buffer(struct torture_context *test, "failed to open %s to UTF-16LE", charset)); } - cd2 = smb_iconv_open_ex(test, charset, "UTF-16LE", lpcfg_parm_bool(test->lp_ctx, NULL, "iconv", "native", true)); + cd2 = smb_iconv_open_ex(test, charset, "UTF-16LE", false); if (cd2 == (iconv_t)-1) { torture_fail(test, talloc_asprintf(test, "failed to open %s to UTF-16LE via smb_iconv_open_ex", charset)); } - cd3 = smb_iconv_open_ex(test, "UTF-16LE", charset, lpcfg_parm_bool(test->lp_ctx, NULL, "iconv", "native", true)); + cd3 = smb_iconv_open_ex(test, "UTF-16LE", charset, false); if (cd3 == (iconv_t)-1) { torture_fail(test, talloc_asprintf(test, |