Merge "Change PTL informatin in INFO"
[bottlenecks.git] / testsuites / rubbos / rubbos_scripts / 1-1-1 / scripts / CLIENT1_configure.sh
1 #!/bin/bash
2 ##############################################################################
3 # Copyright (c) 2015 Huawei Technologies Co.,Ltd and others.
4 #
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10
11 cd /bottlenecks/rubbos/rubbos_scripts/1-1-1
12 source set_bottlenecks_rubbos_env.sh
13
14 echo "CONFIGURING RUBBOS CLIENT on $HOSTNAME"
15
16 cp -r $WORK_HOME/rubbos_files/Client $RUBBOS_HOME/
17 cp -r $WORK_HOME/rubbos_files/bench $RUBBOS_HOME/
18
19 cp $OUTPUT_HOME/rubbos_conf/build.properties $RUBBOS_HOME/
20 cp $OUTPUT_HOME/rubbos_conf/config.mk $RUBBOS_HOME/
21 cp $OUTPUT_HOME/rubbos_conf/Makefile $RUBBOS_HOME/
22
23 cp $OUTPUT_HOME/rubbos_conf/rubbos-servletsBO.sh $RUBBOS_HOME/bench/
24 cp $OUTPUT_HOME/rubbos_conf/rubbos-servletsRW.sh $RUBBOS_HOME/bench/
25
26 chmod ug+x $RUBBOS_HOME/bench/*.sh
27
28 #build clients
29 echo "COMPILING RUBBOS CLIENT on $HOSTNAME"
30 cd $RUBBOS_HOME/Client
31 make clean >/dev/null
32 make >/dev/null 2>&1
33
34 echo "DONE CONFIGURING RUBBOS CLIENT on $HOSTNAME"