aboutsummaryrefslogtreecommitdiffstats
path: root/data
diff options
context:
space:
mode:
authorNauman_Ahad <nauman_ahad@xflowresearch.com>2016-02-02 02:54:48 +0500
committerNauman_Ahad <nauman_ahad@xflowresearch.com>2016-02-02 02:54:48 +0500
commitcbdddad944abba7be2eb848b16b2abc1ce791f50 (patch)
tree2a37d904ea45a78bf9b9ae879eedc9eccb7101a1 /data
parent062d12fc2f6a8de367da50445a8af49b983d0b81 (diff)
Bug Fixes for SSL index calculation
Index calcuation for SSL caused a ValueError when converting to float due to the presence of a trailing "k" character. This has ben resolved. Change-Id: I6f7d061977a3a8cbc2aa1afe154df5eeec9feac8 Signed-off-by: Nauman_Ahad <nauman_ahad@xflowresearch.com>
Diffstat (limited to 'data')
-rwxr-xr-xdata/qtip_creds.sh22
-rw-r--r--data/ref_results/index_calculation.py9
2 files changed, 18 insertions, 13 deletions
diff --git a/data/qtip_creds.sh b/data/qtip_creds.sh
index 490de859..bcd4c246 100755
--- a/data/qtip_creds.sh
+++ b/data/qtip_creds.sh
@@ -3,21 +3,25 @@
DEST_IP=$1
echo $INSTALLER_TYPE
echo $INSTALLER_IP
-
+sshoptions="-o StrictHostKeyChecking=no"
case "$INSTALLER_TYPE" in
apex)
- PSWD="vagrant";;
+ PSWD="vagrant"
+ ;;
fuel)
- PSWD="r00tme";;
+ PSWD="r00tme"
+ sshpass -p $PSWD scp $sshoptions ./data/QtipKey.pub root@$INSTALLER_IP:/root
+ sshpass -p $PSWD scp $sshoptions ./data/QtipKey root@$INSTALLER_IP:/root
+ sshpass -p $PSWD ssh $sshoptions root@$INSTALLER_IP "ssh-copy-id -i /root/QtipKey.pub root@$DEST_IP && rm -rf /root/QtipKey && rm -rf /root/QtipKey.pub"
+ ;;
compass)
- PSWD="root";;
+ PSWD="root"
+ sshpass -p $PSWD scp $sshoptions ./data/QtipKey.pub root@$INSTALLER_IP:/root
+ sshpass -p $PSWD scp $sshoptions ./data/QtipKey root@$INSTALLER_IP:/root
+ sshpass -p $PSWD ssh $sshoptions root@$INSTALLER_IP "ssh-copy-id -i /root/QtipKey.pub root@$DEST_IP && rm -rf /root/QtipKey && rm -rf /root/QtipKey.pub"
+ ;;
joid)
PSWD="joid";;
*)
echo "Unkown installer $INSTALLER_TYPE specified";;
esac
-echo $PWD
-sshoptions="-o StrictHostKeyChecking=no"
-sshpass -p $PSWD scp $sshoptions ./data/QtipKey.pub root@$INSTALLER_IP:/root
-sshpass -p $PSWD ssh $sshoptions root@$INSTALLER_IP "ssh-copy-id -i /root/QtipKey.pub root@$DEST_IP && rm -rf /root/QtipKey.pub"
-
diff --git a/data/ref_results/index_calculation.py b/data/ref_results/index_calculation.py
index 488ed867..74c8b14b 100644
--- a/data/ref_results/index_calculation.py
+++ b/data/ref_results/index_calculation.py
@@ -36,9 +36,10 @@ def generic_index(dict_gen,testcase,reference_num,*args):
count=count+1
for arg in args:
if arg == args[c-1]:
- result=float(dict_temp.get(str(arg)))
+ try:
+ result=float(dict_temp.get(str(arg)))
+ except ValueError:
+ result=float(dict_temp.get(str(arg))[:-1])*1000
dict_temp=dict_temp.get(str(arg))
total=total+result
- return compute_index(total, reference_num, count)
-
- \ No newline at end of file
+ return compute_index(total, reference_num, count)