📄 malloc3.c
字号:
//=================================================================//// malloc3.c//// Testcase for C library malloc(), calloc() and free()////=================================================================//####COPYRIGHTBEGIN####// // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License // Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at // http://www.redhat.com/ // // Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. // // The Original Code is eCos - Embedded Configurable Operating System, // released September 30, 1998. // // The Initial Developer of the Original Code is Red Hat. // Portions created by Red Hat are // Copyright (C) 1998, 1999, 2000 Red Hat, Inc. // All Rights Reserved. // ------------------------------------------- // //####COPYRIGHTEND####//=================================================================//#####DESCRIPTIONBEGIN####//// Author(s): jlarmour// Contributors: jlarmour// Date: 1998/6/3// Description: Contains testcode for C library malloc(), calloc() and// free() functions//////####DESCRIPTIONEND####// Declarations for test system://// TESTCASE_TYPE=CYG_TEST_MODULE// INCLUDES#include <pkgconf/system.h> // Overall system configuration#include <pkgconf/libc.h> // config header for C library so we can know // size of malloc pool#ifdef CYGPKG_KERNEL# include <pkgconf/kernel.h> // CYGSEM_KERNEL_MEMORY_COALESCE#endif#include <stdlib.h>#include <cyg/infra/testcase.h>#include <sys/cstartup.h> // C library initialisation// FUNCTIONSexternC voidcyg_package_start( void ){#ifdef CYGPKG_LIBC cyg_iso_c_start();#else (void)main(0, NULL);#endif} // cyg_package_start()#if defined(CYGPKG_LIBC) && defined(CYGPKG_LIBC_MALLOC) && \ defined(CYGSEM_KERNEL_MEMORY_COALESCE)static intfill_with_data( char *buf, int size ){ int i; for (i=0; i < size; i++) buf[i] = 'f'; for (i=0; i < size; i++) if (buf[i] != 'f') { CYG_TEST_FAIL( "data written to buffer does not compare " "correctly! #1" ); return 0; } // if for (i=0; i < size; i++) buf[i] = 'z'; for (i=0; i < size; i++) if (buf[i] != 'z') { CYG_TEST_FAIL( "data written to buffer does not compare " "correctly! #2" ); return 0; } // if return 1;} // fill_with_data()#endif // if defined(CYGPKG_LIBC) && defined(CYGPKG_LIBC_MALLOC) && // defined(CYGSEM_KERNEL_MEMORY_COALESCE)intmain( int argc, char *argv[] ){#if defined(CYGPKG_LIBC) && defined(CYGPKG_LIBC_MALLOC) && \ defined(CYGSEM_KERNEL_MEMORY_COALESCE) char *str; int size = CYGNUM_LIBC_MALLOC_MEMPOOL_SIZE/2;#endif CYG_TEST_INIT(); CYG_TEST_INFO("Starting tests from testcase " __FILE__ " for C library " "malloc() and free() functions"); CYG_TEST_INFO("This checks allocation and freeing of large regions");#if defined(CYGPKG_LIBC) && defined(CYGPKG_LIBC_MALLOC) && \ defined(CYGSEM_KERNEL_MEMORY_COALESCE) // Don't allocate all the memory at once - leave room for any structures // used to manage the memory str = (char *)malloc( size ); CYG_TEST_PASS_FAIL( str != NULL, "allocation 1"); CYG_TEST_PASS_FAIL( fill_with_data( str, size ), "allocation 1 usability"); free( str ); str = (char *)malloc( size ); CYG_TEST_PASS_FAIL( str != NULL, "allocation 2"); CYG_TEST_PASS_FAIL( fill_with_data( str, size ), "allocation 2 usability"); free( str ); str = (char *)malloc( size ); CYG_TEST_PASS_FAIL( str != NULL, "allocation 3"); CYG_TEST_PASS_FAIL( fill_with_data( str, size ), "allocation 3 usability"); free( str ); str = (char *)malloc( size ); CYG_TEST_PASS_FAIL( str != NULL, "allocation 4"); CYG_TEST_PASS_FAIL( fill_with_data( str, size ), "allocation 4 usability"); free( str ); str = (char *)malloc( size ); CYG_TEST_PASS_FAIL( str != NULL, "allocation 5"); CYG_TEST_PASS_FAIL( fill_with_data( str, size ), "allocation 5 usability"); free( str ); str = (char *)malloc( size ); CYG_TEST_PASS_FAIL( str != NULL, "allocation 6"); CYG_TEST_PASS_FAIL( fill_with_data( str, size ), "allocation 6 usability"); free( str ); str = (char *)malloc( size ); CYG_TEST_PASS_FAIL( str != NULL, "allocation 7"); CYG_TEST_PASS_FAIL( fill_with_data( str, size ), "allocation 7 usability"); free( str ); str = (char *)malloc( size ); CYG_TEST_PASS_FAIL( str != NULL, "allocation 8"); CYG_TEST_PASS_FAIL( fill_with_data( str, size ), "allocation 8 usability"); free( str ); str = (char *)malloc( size ); CYG_TEST_PASS_FAIL( str != NULL, "allocation 9"); CYG_TEST_PASS_FAIL( fill_with_data( str, size ), "allocation 9 usability"); free( str ); str = (char *)malloc( size ); CYG_TEST_PASS_FAIL( str != NULL, "allocation 10"); CYG_TEST_PASS_FAIL( fill_with_data( str, size ),"allocation 10 usability"); free( str );#else CYG_TEST_NA("Testing is not applicable to this configuration");#endif // if defined(CYGPKG_LIBC) && defined(CYGPKG_LIBC_MALLOC) && // defined(CYGSEM_KERNEL_MEMORY_COALESCE) CYG_TEST_FINISH("Finished tests from testcase " __FILE__ " for C library " "malloc() and free() functions");} // main()// EOF malloc3.c
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -