summaryrefslogtreecommitdiff
path: root/test/string
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-01-23 16:28:10 +0000
committerEric Andersen <andersen@codepoet.org>2003-01-23 16:28:10 +0000
commit545e51be154967ab3e8d82fff5f7c25487076e72 (patch)
tree24cdc7527b6e430111c26b00fddf66fc3ad91178 /test/string
parentbce788f4dc069f977a8e55dd3d69f3fa4a498170 (diff)
Update tests to be somewhat consistant with the rest of the world
Diffstat (limited to 'test/string')
-rw-r--r--test/string/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/string/Makefile b/test/string/Makefile
index 236dc68ea..df83b78fa 100644
--- a/test/string/Makefile
+++ b/test/string/Makefile
@@ -42,8 +42,8 @@ string_glibc: string.c Makefile
-@ echo " "
-@ echo "Compiling vs GNU libc: "
-@ echo " "
- $(HOST_CC) $(GLIBC_CFLAGS) -c $< -o $@.o
- $(HOST_CC) $(GLIBC_LDFLAGS) $@.o -o $@
+ $(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o
+ $(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
$(STRIPTOOL) -x -R .note -R .comment $@
-./$@
-@ echo " "
@@ -64,8 +64,8 @@ testcopy_glibc: testcopy.c Makefile
-@ echo " "
-@ echo "Compiling vs GNU libc: "
-@ echo " "
- $(HOST_CC) $(GLIBC_CFLAGS) -c $< -o $@.o
- $(HOST_CC) $(GLIBC_LDFLAGS) $@.o -o $@
+ $(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o
+ $(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
$(STRIPTOOL) -x -R .note -R .comment $@
-./$@ > testcopy.gnu.out
-@ echo " "