repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
WIP FPC-III support
[linux/fpc-iii.git]
/
tools
/
testing
/
selftests
/
net
/
test_bpf.sh
blob
65677909c574dffc2d9784d6563b92bbd26931ff
1
#!/bin/sh
2
# SPDX-License-Identifier: GPL-2.0
3
# Runs bpf test using test_bpf kernel module
4
5
if
/
sbin
/
modprobe
-q
test_bpf
;
then
6
/
sbin
/
modprobe
-q -r
test_bpf
;
7
echo
"test_bpf: ok"
;
8
else
9
echo
"test_bpf: [FAIL]"
;
10
exit
1
;
11
fi