Skip to content

Commit

Permalink
net: Move selftests to common net/ subdirectory.
Browse files Browse the repository at this point in the history
Suggested-by: Daniel Baluta <daniel.baluta@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
David S. Miller committed Mar 20, 2013
1 parent 4c1d8d0 commit a6f6803
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 22 deletions.
3 changes: 1 addition & 2 deletions tools/testing/selftests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
16 changes: 0 additions & 16 deletions tools/testing/selftests/net-socket/Makefile

This file was deleted.

Original file line number Diff line number Diff line change
@@ -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)
File renamed without changes.
File renamed without changes.

0 comments on commit a6f6803

Please sign in to comment.