aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/net/Makefile
blob: c7493b8f9b0ee5b951d73d64e7502e809be2d5ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Makefile for net selftests

CC = $(CROSS_COMPILE)gcc
CFLAGS = -Wall -O2 -g

CFLAGS += -I../../../../usr/include/

NET_PROGS = socket psock_fanout psock_tpacket

all: $(NET_PROGS)
%: %.c
	$(CC) $(CFLAGS) -o $@ $^

run_tests: all
	@/bin/sh ./run_netsocktests || echo "sockettests: [FAIL]"
	@/bin/sh ./run_afpackettests || echo "afpackettests: [FAIL]"
	@if /sbin/modprobe test_bpf ; then \
		/sbin/rmmod test_bpf; \
		echo "test_bpf: ok"; \
	else \
		echo "test_bpf: [FAIL]"; \
		exit 1; \
	fi
clean:
	$(RM) $(NET_PROGS)