diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-02-14 03:49:49 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-02-14 03:49:49 +0000 |
commit | ccb3a37f9323bfc0b90c18d717eb4838350d9696 (patch) | |
tree | 6d21898a258c00ce425731805b746bda686b2c53 /test/rpc/Makefile | |
parent | 3ed790f7d6d8d14020e5015249d728031467ecf3 (diff) |
convert to new test framework
Diffstat (limited to 'test/rpc/Makefile')
-rw-r--r-- | test/rpc/Makefile | 40 |
1 files changed, 5 insertions, 35 deletions
diff --git a/test/rpc/Makefile b/test/rpc/Makefile index 58f04f634..779300199 100644 --- a/test/rpc/Makefile +++ b/test/rpc/Makefile @@ -1,38 +1,8 @@ -# Makefile for uClibc -# -# Copyright (C) 2005 Erik Andersen <andersen@uclibc.org> +# uClibc rpc tests +# Licensed under the GNU Library General Public License, see COPYING.LIB -include ../Rules.mak +TESTS := getrpcent -# getrpcent_r_diff -TARGETS = getrpcent getrpcent_glibc getrpcent_diff +include ../Test.mak -all: $(TARGETS) - -getrpcent: getrpcent.c Makefile $(TESTDIR)/Rules.mak - -@ echo "-------" - -@ echo " " - -@ echo "Compiling $@ vs uClibc: " - -@ echo " " - $(CC) $(CFLAGS) -c $< -o $@.o - $(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS) - $(STRIPTOOL) -x -R .note -R .comment $@ - ./$@ > getrpcent.out - -@ echo " " - -getrpcent_glibc: getrpcent.c Makefile $(TESTDIR)/Rules.mak - -@ echo "-------" - -@ echo " " - -@ echo "Compiling $@ vs glibc: " - -@ echo " " - $(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o - $(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@ - $(STRIPTOOL) -x -R .note -R .comment $@ - ./$@ > getrpcent_glibc.out - -@ echo " " - -getrpcent_diff: getrpcent getrpcent_glibc - diff -u getrpcent_glibc.out getrpcent.out - -clean: - $(RM) *.[oa] *~ core $(TARGETS) *.out +DODIFF_getrpcent := 1 |