1
0
Fork 0

net: Move selftests to common net/ subdirectory.

Suggested-by: Daniel Baluta <daniel.baluta@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
hifive-unleashed-5.1
David S. Miller 2013-03-20 15:07:56 -04:00
parent 4c1d8d0617
commit a6f68034de
7 changed files with 6 additions and 22 deletions

View File

@ -5,8 +5,7 @@ TARGETS += vm
TARGETS += cpu-hotplug
TARGETS += memory-hotplug
TARGETS += efivarfs
TARGETS += net-socket
TARGETS += net-afpacket
TARGETS += net
all:
for TARGET in $(TARGETS); do \

View File

@ -1,16 +0,0 @@
# Makefile for net-socket selftests
CC = $(CROSS_COMPILE)gcc
CFLAGS = -Wall
NET_SOCK_PROGS = socket
all: $(NET_SOCK_PROGS)
%: %.c
$(CC) $(CFLAGS) -o $@ $^
run_tests: all
@/bin/sh ./run_netsocktests || echo "sockettests: [FAIL]"
clean:
$(RM) $(NET_SOCK_PROGS)

View File

@ -1,18 +1,19 @@
# Makefile for net-socket selftests
# Makefile for net selftests
CC = $(CROSS_COMPILE)gcc
CFLAGS = -Wall
CFLAGS += -I../../../../usr/include/
AF_PACKET_PROGS = psock_fanout
NET_PROGS = socket psock_fanout
all: $(AF_PACKET_PROGS)
all: $(NET_PROGS)
%: %.c
$(CC) $(CFLAGS) -o $@ $^
run_tests: all
@/bin/sh ./run_netsocktests || echo "sockettests: [FAIL]"
@/bin/sh ./run_afpackettests || echo "afpackettests: [FAIL]"
clean:
$(RM) $(AF_PACKET_PROGS)
$(RM) $(NET_PROGS)