在没有--xml = yes参数的情况下运行Valgrind时,它会在执行结束时输出内存使用情况摘要:
const tedious = [
{},
{},
{},
{},
{},
{},
{},
{},
{},
];
const concise = new Array(9).fill({});
console.log(tedious);
console.log(concise);
当我使用--xml = yes参数运行Valgrind时,我没有在XML输出中看到此信息。有没有办法告诉valgrind在XML输出中报告这些信息?