Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a6f68034 authored by David S. Miller's avatar David S. Miller
Browse files

net: Move selftests to common net/ subdirectory.

parent 4c1d8d06
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -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 \
+0 −16
Original line number Diff line number Diff line
# 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)
+5 −4
Original line number Diff line number Diff line
# 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)
Loading