|
From: Rich C. <Ric...@me...> - 2005-07-21 14:57:08
|
I'm building V 3.0.0 on x86 FC3 like system and I'm getting 83 failures in from the test framework. 71 of 73 errors are definitely from here: + Conditional jump or move depends on uninitialised value(s) + at 0x........: index (in /lib/ld-2.3.5.so) + by 0x........: map_doit (in /lib/ld-2.3.5.so) + by 0x........: _dl_catch_error (in /lib/ld-2.3.5.so) + by 0x........: dl_main (in /lib/ld-2.3.5.so) + by 0x........: _dl_sysdep_start (in /lib/ld-2.3.5.so) + by 0x........: _dl_start (in /lib/ld-2.3.5.so) == 181 tests, 83 stderr failures, 2 stdout failures ================= memcheck/tests/addressable (stderr) memcheck/tests/badaddrvalue (stderr) memcheck/tests/badfree-2trace (stderr) memcheck/tests/badfree (stderr) memcheck/tests/badjump (stderr) memcheck/tests/badjump2 (stderr) memcheck/tests/badloop (stderr) memcheck/tests/badpoll (stderr) memcheck/tests/badrw (stderr) memcheck/tests/brk (stderr) memcheck/tests/brk2 (stderr) memcheck/tests/buflen_check (stderr) memcheck/tests/clientperm (stderr) [...] -- Rich Coe ric...@me... General Electric Healthcare Technologies Global Software Platforms, Computer Technology Team |
|
From: Tom H. <to...@co...> - 2005-07-23 12:23:06
|
In message <20050721095436.243babda@godzilla>
Rich Coe <Ric...@me...> wrote:
> I'm building V 3.0.0 on x86 FC3 like system and I'm getting 83 failures
> in from the test framework.
>
> 71 of 73 errors are definitely from here:
> + Conditional jump or move depends on uninitialised value(s)
> + at 0x........: index (in /lib/ld-2.3.5.so)
> + by 0x........: map_doit (in /lib/ld-2.3.5.so)
> + by 0x........: _dl_catch_error (in /lib/ld-2.3.5.so)
> + by 0x........: dl_main (in /lib/ld-2.3.5.so)
> + by 0x........: _dl_sysdep_start (in /lib/ld-2.3.5.so)
> + by 0x........: _dl_start (in /lib/ld-2.3.5.so)
Are you still getting this in the current SVN code? If you are then
it will probably need another suppression adding.
Tom
--
Tom Hughes (to...@co...)
http://www.compton.nu/
|
|
From: Rich C. <Ric...@me...> - 2005-08-10 04:22:08
|
Attached is a patch for suppressing additional errors from glibc-2.3.5. On Sat, 23 Jul 2005 13:22:26 +0100 Tom Hughes <to...@co...> wrote: > In message <20050721095436.243babda@godzilla> > Rich Coe <Ric...@me...> wrote: > > > I'm building V 3.0.0 on x86 FC3 like system and I'm getting 83 failures > > in from the test framework. > > > > 71 of 73 errors are definitely from here: > > + Conditional jump or move depends on uninitialised value(s) > > + at 0x........: index (in /lib/ld-2.3.5.so) > > + by 0x........: map_doit (in /lib/ld-2.3.5.so) > > + by 0x........: _dl_catch_error (in /lib/ld-2.3.5.so) > > + by 0x........: dl_main (in /lib/ld-2.3.5.so) > > + by 0x........: _dl_sysdep_start (in /lib/ld-2.3.5.so) > > + by 0x........: _dl_start (in /lib/ld-2.3.5.so) > > Are you still getting this in the current SVN code? If you are then > it will probably need another suppression adding. > > Tom > > -- > Tom Hughes (to...@co...) > http://www.compton.nu/ > > > ------------------------------------------------------- > SF.Net email is sponsored by: Discover Easy Linux Migration Strategies > from IBM. Find simple to follow Roadmaps, straightforward articles, > informative Webcasts and more! Get everything you need to get up to > speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click > _______________________________________________ > Valgrind-developers mailing list > Val...@li... > https://lists.sourceforge.net/lists/listinfo/valgrind-developers -- Rich Coe ric...@me... General Electric Healthcare Technologies Global Software Platforms, Computer Technology Team Index: glibc-2.3.supp =================================================================== --- glibc-2.3.supp (revision 4220) +++ glibc-2.3.supp (working copy) @@ -468,3 +468,19 @@ fun:dl_main fun:_dl_sysdep_start } +{ + index-not-intercepted-early-enough-HACK-4 + Memcheck:Cond + fun:index + fun:map_doit + fun:_dl_catch_error + fun:dl_main +} +{ + strlen-not-intercepted-early-enough + Memcheck:Cond + fun:strlen + fun:map_doit + fun:_dl_catch_error + fun:dl_main +} |