systemtap/tests/dejagnu-smoketest/runtest.sh

12 lines
261 B
Bash
Raw Normal View History

2018-09-14 18:21:05 +00:00
#! /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