Browse Source

reenable the glibc portion of the test so that we can do a non-interactive/silent comparison between uclibc and glibc results

Mike Frysinger 20 years ago
parent
commit
9f8bdb523e
1 changed files with 3 additions and 3 deletions
  1. 3 3
      test/crypt/Makefile

+ 3 - 3
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)