sl@0: // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: sl@0: using namespace std; sl@0: sl@0: unsigned in OF((void FAR *in_desc, unsigned char FAR * FAR *in_buf)) sl@0: { sl@0: in_desc = NULL; sl@0: in_buf = NULL; sl@0: return 0; sl@0: } sl@0: sl@0: int out OF((void FAR *out_desc, unsigned char FAR *out_buf, unsigned len)) sl@0: { sl@0: out_desc = NULL; sl@0: out_buf = NULL; sl@0: len = 0; sl@0: return 0; sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-EZLIB2-CT-4311 sl@0: @SYMTestCaseDesc To test that the all the zlib function calls can link against libz.dll and libzlib.a. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Call every exported function in zlib.h. sl@0: @SYMTestExpectedResults The code should build with no errors. sl@0: */ sl@0: void LinkTest() sl@0: { sl@0: z_stream stream, copiedStream; sl@0: Bytef bytefarray[1]; sl@0: gz_header header; sl@0: unsigned char uchararray[1]; sl@0: uLongf *ulongfp = NULL; sl@0: const char *constcharp = NULL; sl@0: char *charp = NULL; sl@0: gzFile file = NULL; sl@0: z_off_t zofft = 0; sl@0: int *intp = NULL; sl@0: const Bytef *constbytefp = NULL; sl@0: sl@0: zlibVersion(); sl@0: deflateInit(&stream, Z_DEFAULT_COMPRESSION); sl@0: deflateInit2(&stream, Z_DEFAULT_COMPRESSION, Z_DEFLATED, MAX_WBITS, MAX_MEM_LEVEL, Z_DEFAULT_STRATEGY); sl@0: deflateSetDictionary(&stream, bytefarray, 1); sl@0: deflateCopy(&copiedStream, &stream); sl@0: deflateReset(&stream); sl@0: deflateParams(&stream, Z_DEFAULT_COMPRESSION, Z_DEFAULT_STRATEGY); sl@0: deflateTune(&stream, 1, 1, 1, 1); sl@0: deflateBound(&stream, 1); sl@0: deflatePrime(&stream, 0, 0); sl@0: deflateSetHeader(&stream, &header); sl@0: deflate(&stream, Z_NO_FLUSH); sl@0: deflateEnd(&stream); sl@0: inflateInit(&stream); sl@0: inflateInit2(&stream, MAX_WBITS); sl@0: inflateSetDictionary(&stream, bytefarray, 1); sl@0: inflateSync(&stream); sl@0: inflateCopy(&copiedStream, &stream); sl@0: inflateReset(&stream); sl@0: inflatePrime(&stream, 0, 0); sl@0: inflateGetHeader(&stream, &header); sl@0: inflate(&stream, Z_NO_FLUSH); sl@0: inflateEnd(&stream); sl@0: inflateBackInit(&stream, MAX_WBITS, uchararray); sl@0: inflateBack(&stream, in, uchararray, out, uchararray); sl@0: inflateBackEnd(&stream); sl@0: zlibCompileFlags(); sl@0: compress(bytefarray, ulongfp, bytefarray, 1); sl@0: compress2(bytefarray, ulongfp, bytefarray, 1, Z_DEFAULT_COMPRESSION); sl@0: compressBound(1); sl@0: uncompress(bytefarray, ulongfp, bytefarray, 1); sl@0: gzopen(constcharp, constcharp); sl@0: gzdopen(1, constcharp); sl@0: gzsetparams(file, Z_DEFAULT_COMPRESSION, Z_DEFAULT_STRATEGY); sl@0: gzread(file, uchararray, 1); sl@0: gzwrite(file, constcharp, 0); sl@0: gzprintf(file, constcharp); sl@0: gzputs(file, constcharp); sl@0: gzgets(file, charp, 0); sl@0: gzputc(file, 0); sl@0: gzgetc(file); sl@0: gzungetc(0, file); sl@0: gzflush(file, Z_NO_FLUSH); sl@0: gzseek(file, zofft, 0); sl@0: gzrewind(file); sl@0: gztell(file); sl@0: gzeof(file); sl@0: gzdirect(file); sl@0: gzclose(file); sl@0: gzerror(file, intp); sl@0: gzclearerr(file); sl@0: adler32(0, constbytefp, 0); sl@0: adler32_combine(0, 0, zofft); sl@0: crc32(0, constbytefp, 0); sl@0: crc32_combine(0, 0, zofft); sl@0: } sl@0: sl@0: int main() sl@0: { sl@0: LinkTest(); sl@0: sl@0: return 0; sl@0: }