## strict EIP updating
##---------------------------------------------------------------------------
-noinst_SCRIPTS = filter_leak_check_size filter_stderr
+noinst_SCRIPTS = filter_allocs filter_leak_check_size filter_stderr
EXTRA_DIST = \
$(noinst_SCRIPTS) \
--- /dev/null
+#! /bin/sh
+
+./filter_stderr | \
+sed "s/malloc\/free: in use at exit: [0-9]\+ bytes in [0-9]\+ blocks./malloc\/free: in use at exit: ... bytes in ... blocks./" | \
+sed "s/malloc.free: [0-9]\+ allocs, [0-9]\+ frees, [0-9]\+ bytes allocated./malloc\/free: ... allocs, ... frees, ... bytes allocated./"
+
by 0x........: (within /.../tests/new_override)
ERROR SUMMARY: 2 errors from 1 contexts (suppressed: 0 from 0)
-malloc/free: in use at exit: 32 bytes in 1 blocks.
-malloc/free: 1 allocs, 0 frees, 32 bytes allocated.
+malloc/free: in use at exit: ... bytes in ... blocks.
+malloc/free: ... allocs, ... frees, ... bytes allocated.
For a detailed leak analysis, rerun with: --leak-check=yes
For counts of detected errors, rerun with: -v