2 # Start up the specified UML instances and wait for them to finish booting
4 # Copyright (C) 2004 Eric Marchionni, Patrik Rayo
5 # Zuercher Hochschule Winterthur
7 # This program is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by the
9 # Free Software Foundation; either version 2 of the License, or (at your
10 # option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
12 # This program is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 # RCSID $Id: start-testing,v 1.4 2004/12/07 18:04:57 as Exp $
21 source $DIR/scripts/function.sh
23 [ -f $DIR/testing.conf ] || die "!! Configuration file 'testing.conf' not found"
24 [ -d $DIR/hosts ] || die "Directory hosts cannot be found."
26 source $DIR/testing.conf
30 HOSTS=$STRONGSWANHOSTS
35 #####################################################
36 # start the uml switches
38 cecho "Start the uml switches (scripts/start-switches)"
39 $DIR/scripts/start-switches
42 #####################################################
43 # start the uml instances
47 cecho "Start the uml instances (scripts/kstart-umls)"
48 $DIR/scripts/kstart-umls $HOSTS
51 cecho "Start the uml instances (scripts/gstart-umls)"
52 $DIR/scripts/gstart-umls $HOSTS
55 cecho "Start the uml instances (scripts/xstart-umls)"
56 $DIR/scripts/xstart-umls $HOSTS
59 cecho "Start the uml instances (scripts/start-umls)"
60 $DIR/scripts/start-umls $HOSTS
63 die "The start mode is unknown! Please set $UMLSTARTMODE properly."
68 #####################################################
69 # do the automated testing
71 if [ $ENABLE_DO_TESTS = "yes" ]
73 cecho "Run the automated tests (do-tests)"
78 ##############################################################################
79 # stop all UML instances and switches
82 if [ $ENABLE_STOP_TESTING = "yes" ]
84 cecho "Stopping all UML instances and switches (stop-testing)"
85 $DIR/stop-testing $HOSTS