Files
linuxkit/test/cases/040_packages/002_bpftrace/check.sh
Simarpreet Singh 5c4523939b pkg/bpftrace: Add a trivial test for pkg/bpftrace
Signed-off-by: Simarpreet Singh <simar@linux.com>
2018-12-07 15:18:06 -08:00

9 lines
173 B
Bash

#!/bin/sh
nsenter -t1 -m -- /usr/bin/bpftrace -l
if [ "$?" -ne "0" ]; then
printf "bpftrace test suite FAILED\n" >&1
exit 1
fi;
printf "bpftrace test suite PASSED\n" >&1