summaryrefslogtreecommitdiff
path: root/test/Test.mak
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-07-02 15:36:20 +0000
committerMike Frysinger <vapier@gentoo.org>2005-07-02 15:36:20 +0000
commit21b51772edd7f5b993f5ceec97a69dfc8462e63a (patch)
tree7b71f27e6d75aa9a68a3800ccddfb412ffd13e3c /test/Test.mak
parent06134db0038580fd77e73d66ed1b8bd20900f57f (diff)
new testing framework to unify duplicated code in subdirs
Diffstat (limited to 'test/Test.mak')
-rw-r--r--test/Test.mak59
1 files changed, 59 insertions, 0 deletions
diff --git a/test/Test.mak b/test/Test.mak
new file mode 100644
index 000000000..9519eb9ea
--- /dev/null
+++ b/test/Test.mak
@@ -0,0 +1,59 @@
+# Common makefile rules for tests
+#
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
+#
+# This program is free software; you can redistribute it and/or modify it under
+# the terms of the GNU Library General Public License as published by the Free
+# Software Foundation; either version 2 of the License, or (at your option) any
+# later version.
+#
+# This program is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+# FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more
+# details.
+#
+# You should have received a copy of the GNU Library General Public License
+# along with this program; if not, write to the Free Software Foundation, Inc.,
+# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+include ../Rules.mak
+
+U_TARGETS := $(TESTS)
+G_TARGETS := $(patsubst %,%_glibc,$(U_TARGETS))
+U_TARGETS += $(U_TESTS)
+G_TARGETS += $(G_TESTS)
+TARGETS = $(U_TARGETS) $(G_TARGETS)
+
+all: $(TARGETS)
+
+$(TARGETS): Makefile $(TESTDIR)Rules.mak $(TESTDIR)Test.mak
+$(U_TARGETS): $(patsubst %,%.c,$(U_TARGETS))
+$(G_TARGETS): $(patsubst %_glibc,%.c,$(G_TARGETS))
+
+$(U_TARGETS):
+ -@ echo "----------------------------"
+ -@ echo "Compiling $@ vs uClibc: "
+ -@ echo " "
+ $(CC) $(CFLAGS) -c $@.c -o $@.o
+ $(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
+ $$WRAPPER_$@ ./$@ $$OPTS_$@ ; \
+ ret=$$? ; \
+ test -z "$$RET_$@" && export RET_$@=0 ; \
+ test $$ret -eq $$RET_$@
+ -@ echo " "
+
+$(G_TARGETS):
+ -@ echo "----------------------------"
+ -@ echo "Compiling $@ vs glibc: "
+ -@ echo " "
+ $(HOSTCC) $(GLIBC_CFLAGS) -c $(patsubst %_glibc,%,$@).c -o $@.o
+ $(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
+ $(STRIPTOOL) -x -R .note -R .comment $@
+ $$WRAPPER_$(patsubst %_glibc,%,$@) ./$@ $$OPTS_$(patsubst %_glibc,%,$@) ; \
+ ret=$$? ; \
+ test -z "$$RET_$(patsubst %_glibc,%,$@)" && export RET_$(patsubst %_glibc,%,$@)=0 ; \
+ test $$ret -eq $$RET_$(patsubst %_glibc,%,$@)
+ -@ echo " "
+
+clean:
+ $(RM) *.[oa] *~ core $(TARGETS)