[Nice-commit] tester run,1.4,1.5
Brought to you by:
bonniot
|
From: <bo...@us...> - 2003-04-27 14:49:14
|
Update of /cvsroot/nice/tester
In directory sc8-pr-cvs1:/tmp/cvs-serv28317
Modified Files:
run
Log Message:
Update the tester from CVS first.
Index: run
===================================================================
RCS file: /cvsroot/nice/tester/run,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** run 27 Apr 2003 00:28:16 -0000 1.4
--- run 27 Apr 2003 14:49:10 -0000 1.5
***************
*** 6,9 ****
--- 6,16 ----
set -e
+ if [ "$1" != "updated" ]; then
+ # We first update the tester code, then start a new copy of this file
+ # (since it might have been updated).
+ cvs update
+ exec "$0" updated
+ fi
+
# Set up variables, that can be overriden in the setup file.
machine="`hostname -f`"
***************
*** 44,48 ****
if ../Project; then
! echo "Bootstrap SUCCESS" > $config.res
else
echo "Bootstrap FAILURE" > $config.res
--- 51,55 ----
if ../Project; then
! echo "Bootstrap OK" > $config.res
else
echo "Bootstrap FAILURE" > $config.res
***************
*** 76,77 ****
--- 83,90 ----
scp -p ./*.id ./*.res ./*.log $us...@sh...:$results_dir
fi
+
+ echo ""
+ echo "======================"
+ echo "End of testing"
+ echo "======================"
+ echo ""
|