|
From: Darren B. <dar...@ad...> - 2005-05-21 02:44:21
|
Hi, The "commentary" output is human-readable, but I'm thinking about automatically detecting and reporting memory errors in our test suite that runs every night. Currently the output is something like: ==19346== ==19346== Conditional jump or move depends on uninitialised value(s) But it's hard for a program to pick out these errors because they're just text amongst other text. Is there (or could there be) an option to make these errors easier to parse out? I couldn't find any. For example ==19346== ==19346== [ERROR #12345] Conditional jump or move depends on uninitialised value(s) or perhaps ==19346== ==19346== [BEGIN ERROR #12345] ==19346== Conditional jump or move depends on uninitialised value(s) ... ==19346== [END ERROR #12345] (where 12345 is the unique numeric code that corresponds to the "Condition jump" error in this case). Thanks, DB |