From: hades Date: Sun, 10 Sep 2000 13:52:42 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: https://jspc29.x-matter.uni-frankfurt.de/git/?a=commitdiff_plain;h=d6c6c8e0b142d7210126359296f3d247f51e8d8d;p=daqdata.git *** empty log message *** --- 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 +