summaryrefslogtreecommitdiff
path: root/test/stdlib/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-08-14 02:38:04 +0000
committerEric Andersen <andersen@codepoet.org>2002-08-14 02:38:04 +0000
commit8c2c5e549eec9eec63c85e2d21a53a71a369e557 (patch)
treea6f09ae74a425d493fbab0d4e453da7db956c9ab /test/stdlib/Makefile
parent8966b4965d7d6ae29d957950d064382c79669246 (diff)
Move all malloc tests under test/malloc/
Diffstat (limited to 'test/stdlib/Makefile')
-rw-r--r--test/stdlib/Makefile61
1 files changed, 0 insertions, 61 deletions
diff --git a/test/stdlib/Makefile b/test/stdlib/Makefile
index 209c43b5b..5f2f12b16 100644
--- a/test/stdlib/Makefile
+++ b/test/stdlib/Makefile
@@ -21,8 +21,6 @@ include $(TESTDIR)/Rules.mak
-TARGETS=testmalloc testmalloc_glibc
-TARGETS+=mallocbug mallocbug_glibc
TARGETS+=teststrtol teststrtol_glibc teststrtol_diff
TARGETS+=qsort qsort_glibc qsort_diff
TARGETS+=teston_exit teston_exit_glibc teston_exit_diff
@@ -30,65 +28,6 @@ TARGETS+=testatexit testatexit_glibc testatexit_diff
all: $(TARGETS)
-testmalloc_source:
- -@ echo "-------"
- -@ echo "testmalloc.c source: "
- -@ echo " "
- -@ cat testmalloc.c
- -@ echo " "
-
-testmalloc: testmalloc.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak $(CC)
- -@ 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 GNU libc: "
- -@ echo " "
- $(HOST_CC) $(GLIBC_CFLAGS) -c $< -o $@.o
- $(HOST_CC) $(GLIBC_LDFLAGS) $@.o -o $@
- $(STRIPTOOL) -x -R .note -R .comment $@
- -$(LDD) $@
- ls -l $@
- -./$@
- -@ echo " "
-
-mallocbug: mallocbug.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak $(CC)
- -@ 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 GNU libc: "
- -@ echo " "
- $(HOST_CC) $(GLIBC_CFLAGS) -c $< -o $@.o
- $(HOST_CC) $(GLIBC_LDFLAGS) $@.o -o $@
- $(STRIPTOOL) -x -R .note -R .comment $@
- -$(LDD) $@
- ls -l $@
- -./$@
- -@ echo " "
-
teststrtol_source:
-@ echo "-------"
-@ echo "teststrtol.c source: "