Filter out loading error messages when python scripts haven't
been installed yet (running against vg-in-place)
# delete messages produced by valgrind python code loading.
/Loaded.*valgrind-monitor.py$/d
/Type "help valgrind" for more info\.$/d
+# and remove loading error messages when python scripts haven't
+# been installed yet (running against vg-in-place)
+/warning: Missing auto-load script.*/d
+/of file .*vgpreload.*so.*/d
+/Use.*info auto-load python-scripts.*/d
# delete messages produced when GDB auto-load denies loading python code.
# Note that the first pattern is also present in filter_vgdb.in
# filter python loading denied error message (see also filter_gdb.in)
$SED -e '/warning: File .*valgrind-monitor.py.*declined.*/d' |
+# and remove loading error messages when python scripts haven't
+# been installed yet (running against vg-in-place)
+$SED -e '/warning: Missing auto-load script.*/d' |
+$SED -e '/of file .*vgpreload.*so.*/d' |
+$SED -e '/Use.*info auto-load python-scripts.*/d' |
# and filter out any remaining empty lines
$SED -e '/^$/d'