Shuah Khan | 7069a97 | 2014-10-30 16:52:15 -0600 | [diff] [blame] | 1 | #!/bin/sh |
Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 2 | # SPDX-License-Identifier: GPL-2.0 |
Shuah Khan | 7069a97 | 2014-10-30 16:52:15 -0600 | [diff] [blame] | 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 |