mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-08-01 23:17:49 +00:00
A few of these tests appear to be misnumbered, so renumber them. Signed-off-by: David Scott <dave@recoil.org>
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
|