summaryrefslogtreecommitdiff
path: root/test/stat
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-07-01 00:02:24 +0000
committerMike Frysinger <vapier@gentoo.org>2005-07-01 00:02:24 +0000
commit095ca55f2edd965fa9f3a5d3a4c98a7d7e852ed9 (patch)
tree074540e563757454c2c4adce2e3799a5ab766db8 /test/stat
parentde8b8b0b0bdd0f6012187dfc3046cac098000bb0 (diff)
remove old depend on Config and make it so that a test failure aborts the make process
Diffstat (limited to 'test/stat')
-rw-r--r--test/stat/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/stat/Makefile b/test/stat/Makefile
index 5c8e5e12a..3bd98f795 100644
--- a/test/stat/Makefile
+++ b/test/stat/Makefile
@@ -33,7 +33,7 @@ stat_source:
-@ cat stat.c
-@ echo " "
-stat: stat.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+stat: stat.c Makefile $(TESTDIR)/Rules.mak
-@ echo "-------"
-@ echo " "
-@ echo "Compiling vs uClibc: "
@@ -41,7 +41,7 @@ stat: stat.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
$(CC) $(CFLAGS) -c $< -o $@.o
$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
$(STRIPTOOL) -x -R .note -R .comment $@
- -./$@ stat.c > $@.out
+ ./$@ stat.c > $@.out
-@ echo " "
stat_glibc: stat.c Makefile
@@ -52,7 +52,7 @@ stat_glibc: stat.c Makefile
$(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o
$(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
$(STRIPTOOL) -x -R .note -R .comment $@
- -./$@ stat.c > $@.out
+ ./$@ stat.c > $@.out
-@ echo " "
stat_diff: stat stat_glibc
@@ -63,7 +63,7 @@ stat_diff: stat stat_glibc
-diff -u stat_glibc.out stat.out
-@ echo " "
-stat64: stat.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+stat64: stat.c Makefile $(TESTDIR)/Rules.mak
-@ echo "-------"
-@ echo " "
-@ echo "Compiling vs uClibc: "
@@ -71,7 +71,7 @@ stat64: stat.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
$(CC) $(CFLAGS) $(CFLAGS64) -c $< -o $@.o
$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
$(STRIPTOOL) -x -R .note -R .comment $@
- -./$@ stat.c > $@.out
+ ./$@ stat.c > $@.out
-@ echo " "
stat64_glibc: stat.c Makefile
@@ -82,7 +82,7 @@ stat64_glibc: stat.c Makefile
$(HOSTCC) $(GLIBC_CFLAGS) $(CFLAGS64) -c $< -o $@.o
$(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
$(STRIPTOOL) -x -R .note -R .comment $@
- -./$@ stat.c > $@.out
+ ./$@ stat.c > $@.out
-@ echo " "
stat64_diff: stat64 stat64_glibc