mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-07 19:18:56 +00:00
9 lines
173 B
Bash
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 |