|
From: Paul F. <pj...@wa...> - 2023-04-27 20:02:06
|
On 24/04/2023 23:29, Carl Love via Valgrind-developers wrote: > == 714 tests, 2 stderr failures, 0 stdout failures, 0 stderrB failures, > 0 stdoutB failures, 2 post failures == > massif/tests/new-cpp (post) > massif/tests/overloaded-new (post) > And these two might be easy to fix if you run the testcase normally and see if you can identify the extra allocating functions and add them to the vgtest files in the --ignore-fn list. E.g., for new-exp there is vgopts: --stacks=no --time-unit=B --massif-out-file=massif.out vgopts: --ignore-fn=__part_load_locale --ignore-fn=__time_load_locale --ignore-fn=dwarf2_unwind_dyld_add_image_hook vgopts: --ignore-fn=get_or_create_key_element --ignore-fn=_GLOBAL__sub_I_eh_alloc.cc --ignore-fn=call_init.part.0 (On FreeBSD I ended up adding a couple of extra expected for when running GCC builds because stripped libstdc++ and no debuginfo package). A+ Paul |