Skip to content
Makefile 520 B
Newer Older
# Makefile for net selftests

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

NET_PROGS = socket psock_fanout psock_tpacket
%: %.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