aboutsummaryrefslogtreecommitdiffstats
path: root/docker/run_qtip.sh
blob: 962b068f8b6d83cf2dba57cee835bd6f5a35c6d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#! /bin/bash

QTIP=qtip/qtip.py

run_test_suite()
{
    if [ "$TEST_CASE" == "compute" ]; then
        cd ${QTIP_DIR}  && python ${QTIP} -l default -f compute
        cd ${QTIP_DIR} && python scripts/ref_results/suite_result.py compute
    elif [ "$TEST_CASE" == "storage" ]; then
        cd ${QTIP_DIR}  && python ${QTIP} -l default -f storage
        cd ${QTIP_DIR} && python scripts/ref_results/suite_result.py storage
    elif [ "$TEST_CASE" == "network" ]; then
        cd ${QTIP_DIR}  && python ${QTIP} -l default -f network
        cd ${QTIP_DIR} && python scripts/ref_results/suite_result.py network
    elif [ "$TEST_CASE" == "all" ]; then
        cd ${QTIP_DIR}  && python ${QTIP} -l default -f compute
        cd ${QTIP_DIR}  && python ${QTIP} -l default -f storage
        cd ${QTIP_DIR}  && python ${QTIP} -l default -f network

        cd ${QTIP_DIR} && python scripts/ref_results/suite_result.py compute
        cd ${QTIP_DIR} && python scripts/ref_results/suite_result.py storage
        cd ${QTIP_DIR} && python scripts/ref_results/suite_result.py network
    fi
}

rm -f ${QTIP_DIR}/config/QtipKey*

echo "Generating ssh keypair"
ssh-keygen -t rsa -N "" -f ${QTIP_DIR}/config/QtipKey -q

source ${QTIP_DIR}/docker/prepare_qtip_image.sh

run_test_suite

source ${QTIP_DIR}/docker/cleanup_qtip_image.sh

echo "Remove ssh keypair"
rm -f ${QTIP_DIR}/config/QtipKey*