From d6c6c8e0b142d7210126359296f3d247f51e8d8d Mon Sep 17 00:00:00 2001 From: hades Date: Sun, 10 Sep 2000 13:52:42 +0000 Subject: [PATCH] *** empty log message *** --- allParam/test/Makefile | 3 ++- allParam/test/mv.sh | 10 ++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 allParam/test/mv.sh diff --git a/allParam/test/Makefile b/allParam/test/Makefile index 3ffa77b..ebd925d 100644 --- a/allParam/test/Makefile +++ b/allParam/test/Makefile @@ -1,3 +1,4 @@ +TIME = time MV = ./mv.sh # Channel Access test @@ -66,7 +67,7 @@ LIBS = ca file ora psql tcl ca_test file_test ora_test psql_test tcl_test : $(RM) $@_suite $(MAKE) $@_suite - time ./$@_suite > $@_protocol.txt 2>&1 + $(TIME) ./$@_suite > $@_protocol.txt 2>&1 ca_test_suite : $(MAKE) $(OBJS) "CFLAGS=$(CACFLAGS)" diff --git a/allParam/test/mv.sh b/allParam/test/mv.sh new file mode 100644 index 0000000..4142e90 --- /dev/null +++ b/allParam/test/mv.sh @@ -0,0 +1,10 @@ +#!/usr/bin/sh + +prefix=$1 + +for i in $@ ; do + if [ $i != $prefix ] ; then + mv $i $prefix$i + fi +done + -- 2.43.0