[uClibc-cvs] svn commit: trunk/uClibc/test: args assert malloc silly unistd

vapier at uclibc.org vapier at uclibc.org
Sat Jul 2 15:36:20 UTC 2005


Author: vapier
Date: 2005-07-02 09:36:20 -0600 (Sat, 02 Jul 2005)
New Revision: 10699

Log:
new testing framework to unify duplicated code in subdirs

Added:
   trunk/uClibc/test/Test.mak

Modified:
   trunk/uClibc/test/args/Makefile
   trunk/uClibc/test/assert/Makefile
   trunk/uClibc/test/malloc/Makefile
   trunk/uClibc/test/silly/Makefile
   trunk/uClibc/test/unistd/Makefile


Changeset:
Added: trunk/uClibc/test/Test.mak
===================================================================
--- trunk/uClibc/test/Test.mak	2005-07-02 15:35:02 UTC (rev 10698)
+++ trunk/uClibc/test/Test.mak	2005-07-02 15:36:20 UTC (rev 10699)
@@ -0,0 +1,59 @@
+# Common makefile rules for tests
+#
+# Copyright (C) 2000,2001 Erik Andersen <andersen at 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)

Modified: trunk/uClibc/test/args/Makefile
===================================================================
--- trunk/uClibc/test/args/Makefile	2005-07-02 15:35:02 UTC (rev 10698)
+++ trunk/uClibc/test/args/Makefile	2005-07-02 15:36:20 UTC (rev 10699)
@@ -1,42 +1,12 @@
-# Makefile for uClibc
-#
-# Copyright (C) 2000,2001 Erik Andersen <andersen at 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
+# uClibc args tests
+# Licensed under the GNU Library General Public License, see COPYING.LIB
 
-include ../Rules.mak
+TESTS = arg_test
 
-TARGETS=arg_test
-all: $(TARGETS)
+include ../Test.mak
 
-arg_test: arg_test.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 $@
+export WRAPPER_arg_test = \
 	env -i \
 	ENVVAR=123 \
-	SOMETHING=sldajfasdf \
-	BLAHBLAH=" hi hi " \
-	./$@ a b c d e f g h \
-	> arg_test.out
-	diff -u arg_test.out.good arg_test.out
-	-@ echo " "
-
-clean:
-	$(RM) *.[oa] *~ core $(TARGETS) *.out
+	SOMETHING=sldajfasdf
+export OPTS_arg_test = a b c d e f g h

Modified: trunk/uClibc/test/assert/Makefile
===================================================================
--- trunk/uClibc/test/assert/Makefile	2005-07-02 15:35:02 UTC (rev 10698)
+++ trunk/uClibc/test/assert/Makefile	2005-07-02 15:36:20 UTC (rev 10699)
@@ -1,36 +1,8 @@
-# Makefile for uClibc
-#
-# Copyright (C) 2000,2001 Erik Andersen <andersen at 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
+# uClibc assert tests
+# Licensed under the GNU Library General Public License, see COPYING.LIB
 
-include ../Rules.mak
+TESTS = assert
 
-TARGETS=assert
-all: $(TARGETS)
+include ../Test.mak
 
-assert: assert.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 $@
-	./$@ ; ret=$$? ; test $$ret -eq 134
-	-@ echo " "
-
-clean:
-	$(RM) *.[oa] *~ core $(TARGETS)
+export RET_assert = 134

Modified: trunk/uClibc/test/malloc/Makefile
===================================================================
--- trunk/uClibc/test/malloc/Makefile	2005-07-02 15:35:02 UTC (rev 10698)
+++ trunk/uClibc/test/malloc/Makefile	2005-07-02 15:36:20 UTC (rev 10699)
@@ -1,125 +1,7 @@
-# Makefile for uClibc
-#
-# Copyright (C) 2000,2001 Erik Andersen <andersen at 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
+# uClibc malloc tests
+# Licensed under the GNU Library General Public License, see COPYING.LIB
 
-include ../Rules.mak
+TESTS = malloc mallocbug realloc0 testmalloc
+#time_malloc
 
-TARGETS=malloc
-TARGETS+=testmalloc testmalloc_glibc 
-TARGETS+=mallocbug mallocbug_glibc
-TARGETS+=realloc0 realloc0_glibc
-all: $(TARGETS)
-
-malloc: malloc.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 $@
-	./$@
-	-@ echo " "
-
-testmalloc_source:
-	-@ echo "-------"
-	-@ echo "testmalloc.c source: "
-	-@ echo " "
-	-@ cat testmalloc.c
-	-@ echo " "
-
-testmalloc: testmalloc.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 $@
-	-$(LDD) $@
-	ls -l $@
-	./$@
-	-@ echo " "
-
-testmalloc_glibc: testmalloc.c Makefile
-	-@ echo "-------"
-	-@ echo " "
-	-@ echo "Compiling $@ vs glibc: "
-	-@ echo " "
-	$(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o
-	$(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
-	$(STRIPTOOL) -x -R .note -R .comment $@
-	-$(LDD) $@
-	ls -l $@
-	./$@
-	-@ echo " "
-
-mallocbug: mallocbug.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 $@
-	-$(LDD) $@
-	ls -l $@
-	./$@
-	-@ echo " "
-
-mallocbug_glibc: mallocbug.c Makefile
-	-@ echo "-------"
-	-@ echo " "
-	-@ echo "Compiling $@ vs glibc: "
-	-@ echo " "
-	$(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o
-	$(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
-	$(STRIPTOOL) -x -R .note -R .comment $@
-	-$(LDD) $@
-	ls -l $@
-	./$@
-	-@ echo " "
-
-realloc0: realloc0.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 $@
-	-$(LDD) $@
-	ls -l $@
-	./$@
-	-@ echo " "
-
-realloc0_glibc: realloc0.c Makefile
-	-@ echo "-------"
-	-@ echo " "
-	-@ echo "Compiling $@ vs glibc: "
-	-@ echo " "
-	$(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o
-	$(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
-	$(STRIPTOOL) -x -R .note -R .comment $@
-	-$(LDD) $@
-	ls -l $@
-	./$@
-	-@ echo " "
-
-
-clean:
-	$(RM) *.[oa] *~ core $(TARGETS)
+include ../Test.mak

Modified: trunk/uClibc/test/silly/Makefile
===================================================================
--- trunk/uClibc/test/silly/Makefile	2005-07-02 15:35:02 UTC (rev 10698)
+++ trunk/uClibc/test/silly/Makefile	2005-07-02 15:36:20 UTC (rev 10699)
@@ -1,74 +1,9 @@
-# Makefile for uClibc
-#
-# Copyright (C) 2000,2001 Erik Andersen <andersen at 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
+# uClibc silly tests
+# Licensed under the GNU Library General Public License, see COPYING.LIB
 
-include ../Rules.mak
+TESTS = hello tiny
 
-TARGETS=hello_source hello hello_glibc tiny
+include ../Test.mak
 
-all: $(TARGETS)
-
-hello_source:
-	-@ $(RM) $(TARGETS)
-	-@ echo "-------"
-	-@ echo "hello.c source: "
-	-@ echo " "
-	-@ cat hello.c
-	-@ echo " "
-
-hello: hello.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 $@
-	-$(LDD) $@
-	ls -l $@
-	./$@ ; ret=$$? ; test $$ret -eq 42
-	-@ echo " "
-
-hello_glibc: hello.c Makefile
-	-@ echo "-------"
-	-@ echo " "
-	-@ echo "Compiling $@ vs glibc: "
-	-@ echo " "
-	$(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o
-	$(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
-	$(STRIPTOOL) -x -R .note -R .comment $@
-	-$(LDD) $@
-	ls -l $@
-	./$@ ; ret=$$? ; test $$ret -eq 42
-	-@ echo " "
-
-
-tiny: tiny.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 $@
-	-$(LDD) $@
-	ls -l $@
-	./$@ ; ret=$$? ; test $$ret -eq 42
-	-@ echo " "
-
-clean:
-	$(RM) *.[oa] *~ core $(TARGETS)
+export RET_hello = 42
+export RET_tiny = 42

Modified: trunk/uClibc/test/unistd/Makefile
===================================================================
--- trunk/uClibc/test/unistd/Makefile	2005-07-02 15:35:02 UTC (rev 10698)
+++ trunk/uClibc/test/unistd/Makefile	2005-07-02 15:36:20 UTC (rev 10699)
@@ -1,123 +1,9 @@
-# Makefile for uClibc
-#
-# Copyright (C) 2000,2001 Erik Andersen <andersen at 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
+# uClibc unistd tests
+# Licensed under the GNU Library General Public License, see COPYING.LIB
 
-include ../Rules.mak
+TESTS = clone fork getcwd getopt getopt_long preadwrite vfork
 
-TARGETS=fork fork_glibc vfork vfork_glibc getcwd getopt getopt_long preadwrite 
-all: $(TARGETS)
+include ../Test.mak
 
-getcwd: getcwd.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 $@
-	./$@
-	-@ echo " "
-
-fork: fork.c ../testsuite.h 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 $@
-	./$@
-	-@ echo " "
-
-fork_glibc: fork.c ../testsuite.h Makefile
-	-@ echo "-------"
-	-@ echo " "
-	-@ echo "Compiling $@ vs glibc: "
-	-@ echo " "
-	$(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o
-	$(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
-	$(STRIPTOOL) -x -R .note -R .comment $@
-	./$@
-	-@ echo " "
-
-clone: clone.c ../testsuite.h 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 $@
-	./$@
-	-@ echo " "
-
-clone_glibc: clone.c ../testsuite.h Makefile
-	-@ echo "-------"
-	-@ echo " "
-	-@ echo "Compiling $@ vs glibc: "
-	-@ echo " "
-	$(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o
-	$(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
-	$(STRIPTOOL) -x -R .note -R .comment $@
-	./$@
-	-@ echo " "
-
-vfork: vfork.c ../testsuite.h 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 $@
-	./$@
-	-@ echo " "
-
-vfork_glibc: vfork.c ../testsuite.h Makefile
-	-@ echo "-------"
-	-@ echo " "
-	-@ echo "Compiling $@ vs glibc: "
-	-@ echo " "
-	$(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o
-	$(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
-	$(STRIPTOOL) -x -R .note -R .comment $@
-	./$@
-	-@ echo " "
-
-getopt: getopt.c Makefile $(TESTDIR)/Rules.mak
-	$(CC) $(CFLAGS) -c $< -o $@.o
-	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
-	$(STRIPTOOL) -x -R .note -R .comment $@
-	./$@ -abcXXX -9
-	-@ echo " "
-
-getopt_long: getopt_long.c Makefile $(TESTDIR)/Rules.mak
-	$(CC) $(CFLAGS) -c $< -o $@.o
-	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
-	$(STRIPTOOL) -x -R .note -R .comment $@
-	./$@ --add XXX --delete YYY --verbose
-	-@ echo " "
-
-preadwrite: preadwrite.c Makefile $(TESTDIR)/Rules.mak
-	$(CC) $(CFLAGS) -c $< -o $@.o
-	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
-	$(STRIPTOOL) -x -R .note -R .comment $@
-	./$@
-	-@ echo " "
-
-clean:
-	$(RM) *.[oa] *~ core $(TARGETS)
+export OPTS_getopt = -abcXXX -9
+export OPTS_getopt_long = --add XXX --delete YYY --verbose




More information about the uClibc-cvs mailing list