mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-15 21:18:41 +00:00
10 lines
193 B
Bash
Executable File
10 lines
193 B
Bash
Executable File
#!/bin/sh
|
|
|
|
nsenter -t 1 -m -- /bin/ash -c "/usr/share/bcc/tools/softirqs 1 1"
|
|
if [ "$?" -ne "0" ]; then
|
|
printf "bcc test suite FAILED\n" >&1
|
|
exit 1
|
|
fi;
|
|
|
|
printf "bcc test suite PASSED\n" >&1
|