1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-08 04:58:40 +03:00

r2170: if we don't have a native iconv library then we can't build this test

(This used to be commit 5cf9333f6021479d62cc99475f4fb9a19588f928)
This commit is contained in:
Andrew Tridgell 2004-09-01 09:45:33 +00:00 committed by Gerald (Jerry) Carter
parent f4dbe1865e
commit 4a17f26292

View File

@ -23,6 +23,7 @@
#include "includes.h"
#if HAVE_NATIVE_ICONV
/*
generate a UTF-16LE buffer for a given unicode codepoint
*/
@ -240,7 +241,6 @@ static int test_buffer(uint8_t *inbuf, size_t size, const char *charset)
}
if (memcmp(buf3, inbuf, size) != 0) {
int i;
printf("pull bytes mismatch:\n");
show_buf("inbuf", inbuf, size);
show_buf(" buf3", buf3, size);
@ -305,3 +305,12 @@ BOOL torture_local_iconv(int dummy)
}
#else
BOOL torture_local_iconv(int dummy)
{
printf("No native iconv library - can't run iconv test\n");
return True;
}
#endif