blob: 8aa5a1a957cbf486a31acddaf5c9b3d6f5a8a183 [file] [log] [blame]
njn25e49d8e72002-09-23 09:36:25 +00001#! /bin/sh
2
3# Anonymise paths like "/local/foo/bar/tests/baz/quux" (note "tests" is there)
sewardjd5412292003-05-05 16:18:51 +00004#sed "s/\/.*\/tests\//\/...\/tests\//"
5
6# Remove these two kinds of lines, which tend to appear beneath
7# the stack frame of __libc_start_main
8# by 0x........: (within /.../tests/malloc2)
9# by 0x........: ??? (start.S:81)
10sed "s/by 0x........: (within [^)]*)/by 0x........: .../" | \
11sed "s/by 0x........: ??? ([^)]*)/by 0x........: .../"
12