The testcase mallopt01 skips performing the test when UCLINUX=1, but the mallinfo structure is defined outside the #if !defined(UCLINUX) block.
Attached is a patch to move the mallinfo structure definition inside the #if !defined(UCLINUX) block. Signed-off-by: d.marlin <[email protected]>
--- testcases/kernel/syscalls/mallopt/mallopt01.c.orig2 2010-08-13 10:28:12.318231000 -0500 +++ testcases/kernel/syscalls/mallopt/mallopt01.c 2010-08-13 10:44:06.279068760 -0500 @@ -56,10 +56,10 @@ extern int Tst_COUNT; /* Test Case counter for tst_routines */ void printinfo(); -/***** * * *****/ -struct mallinfo info; #if !defined(UCLINUX) +/***** * * *****/ +struct mallinfo info; /*--------------------------------------------------------------*/ int main(int argc, char *argv[])
------------------------------------------------------------------------------ This SF.net email is sponsored by Make an app they can't live without Enter the BlackBerry Developer Challenge http://p.sf.net/sfu/RIM-dev2dev
_______________________________________________ Ltp-list mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ltp-list
