12 lines
261 B
Bash
Executable File
12 lines
261 B
Bash
Executable File
#! /bin/sh
|
|
|
|
set -e
|
|
cd /usr/share/systemtap/testsuite
|
|
make installcheck RUNTESTFLAGS=proc_by_pid.exp
|
|
cat systemtap.sum | sed -ne '/systemtap.Summary/,$ p' | tee systemtap.sum.results
|
|
if grep -q unexpected systemtap.sum.results ; then
|
|
exit 0
|
|
else
|
|
exit 1
|
|
fi
|