1#!/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' | \
10sed '/^threading model:/ d' | \
11perl -p -e 's/addr=[0-9A-Fa-f]+/addr=......../g'
12
13echo "\n---SSE Registers---"
14echo "::fpregs" | /usr/bin/mdb vgcore.* | \
15perl -n -e '/^%xmm/ && print $_;'
16
17