blob: 2d033700ef6d3df3bddaa4a86046408afa6ab770 [file] [log] [blame]
sewardj8eb8bab2015-07-21 14:44:28 +00001#!/bin/sh
2
3# Filters are not run for post-test check commands.
4# Filter everything here.
5
6echo "---Status---"
7echo "::status" | /usr/bin/mdb vgcore.* | \
8perl -p -e 's/\(.*\) from \S*$/from .../' | \
9perl -0 -p -e 's/^file: .+?^(initial argv:)/$1/ms' | \
Elliott Hughesa0664b92017-04-18 17:46:52 -070010sed '/^threading model:/ d' | \
sewardj8eb8bab2015-07-21 14:44:28 +000011perl -p -e 's/addr=[0-9A-Fa-f]+/addr=......../g'
12
13echo "\n---Stacks---"
14echo "::stacks ! perl -p -e 's/^(\S+)\+.*/\$1/g'" | /usr/bin/mdb vgcore.* | \
15perl -p -e 's/^(THREAD)\s+(STATE)\s+(SOBJ)\s+(COUNT)\s*$/$1 $2 $3 $4\n/' | \
16perl -p -e 's/^(\d+)\s+(UNPARKED)\s+(\S+)\s+(\d+)/$1 $2 $3 $4/g' | \
17perl -p -e 's/^\s*libc.*.so.1/libc.so.1/g' | \
Elliott Hughesa0664b92017-04-18 17:46:52 -070018perl -p -e 's/\+0x[0-9A-Fa-f]+//g' |
19sed 's/^ *//g'