On Tue, 2009-02-10 at 21:13 +0100, Robert Schwebel wrote: > When building for ARM I get this: > > tcore.c:212: error: redefinition of 'TST_TOTAL' > tcore.c:30: error: previous definition of 'TST_TOTAL' was here > > Move definition to x86 specific part, as we also have one in the non-x86 > part. > > Signed-off-by: Robert Schwebel <[email protected]>
Robert, This has been fixed in LTP as recently as Wed Feb 4 06:04:57 2009 UTC. Please see: http://ltp.cvs.sourceforge.net/viewvc/*checkout*/ltp/ltp/testcases/misc/tcore_patch_test_suites/tcore.c?revision=1.5, You may want to use this fix during the Intermediate Feb 09 release of LTP due in few days. Regards-- Subrata > > --- > testcases/misc/tcore_patch_test_suites/tcore.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > Index: ltp-full-20090131/testcases/misc/tcore_patch_test_suites/tcore.c > =================================================================== > --- ltp-full-20090131.orig/testcases/misc/tcore_patch_test_suites/tcore.c > +++ ltp-full-20090131/testcases/misc/tcore_patch_test_suites/tcore.c > @@ -27,7 +27,6 @@ extern int Tst_count; /* > extern char *TESTDIR; /* temporary dir created by > tst_tmpdir() */ > /* Global Variables */ > char *TCID = "tcore"; /* test program identifier. > */ > -int TST_TOTAL = 1; /* total number of tests in this file. > */ > > #if defined __i386__ || defined(__x86_64__) > #include <stdio.h> > @@ -38,6 +37,8 @@ int TST_TOTAL = 1; /* > > #define BUFFER_SIZE 16 > > +int TST_TOTAL = 1; /* total number of tests in this file. > */ > + > /* Circular buffer of integers. */ > > struct prodcons > ------------------------------------------------------------------------------ Create and Deploy Rich Internet Apps outside the browser with Adobe(R)AIR(TM) software. With Adobe AIR, Ajax developers can use existing skills and code to build responsive, highly engaging applications that combine the power of local resources and data with the reach of the web. Download the Adobe AIR SDK and Ajax docs to start building applications today-http://p.sf.net/sfu/adobe-com _______________________________________________ Ltp-list mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ltp-list
