diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-07-01 00:11:30 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-07-01 00:11:30 +0000 |
commit | 9f8bdb523ed6718be29ef50d3602eeb35e76cc37 (patch) | |
tree | 74c9bbc071710c8322bb3c8cb027e7c00f8d922c /test/crypt | |
parent | f12af6c9ca4c5795b460a01a476f3f7b90ed4ee3 (diff) |
reenable the glibc portion of the test so that we can do a non-interactive/silent comparison between uclibc and glibc results
Diffstat (limited to 'test/crypt')
-rw-r--r-- | test/crypt/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/crypt/Makefile b/test/crypt/Makefile index 3993230da..b2a72ced3 100644 --- a/test/crypt/Makefile +++ b/test/crypt/Makefile @@ -18,7 +18,7 @@ include ../Rules.mak -TARGETS=crypt md5c-test +TARGETS=crypt crypt_glibc diff md5c-test EXTRA_LIBS=-lcrypt all: $(TARGETS) @@ -31,13 +31,13 @@ crypt: crypt.c Makefile $(TESTDIR)/Rules.mak $(CC) $(CFLAGS) -c $< -o $@.o $(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS) $(STRIPTOOL) -x -R .note -R .comment $@ - ./$@ < crypt.input #> $@.out 2>&1 + ./$@ < crypt.input > $@.out 2>&1 -@ echo " " crypt_glibc: crypt.c Makefile $(TESTDIR)/Rules.mak -@ echo "-------" -@ echo " " - -@ echo "Compiling $@ vs uClibc: " + -@ echo "Compiling $@ vs glibc: " -@ echo " " $(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o $(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@ $(EXTRA_LIBS) |