diff options
author | Jiang, Yunhong <yunhong.jiang@intel.com> | 2017-03-07 07:06:37 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-03-07 07:06:37 +0000 |
commit | b345dcdf3a6a7ebf19d2932e009f16fc3f51c84e (patch) | |
tree | 1789630a91658096628c4b58092e7a5214c48b40 /ci/envs | |
parent | 8902a7b3234a70b6a665cb2213193babe2550805 (diff) | |
parent | ee70fc0799751b76b3683fef35991ff9e14e4dfe (diff) |
Merge "This patch contains the PCM utility installation and continously collecting memory bandwidth data using pcm-memory throughout each cyclic testcase"
Diffstat (limited to 'ci/envs')
-rwxr-xr-x | ci/envs/host-config | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ci/envs/host-config b/ci/envs/host-config index 4742cc422..99cbb3773 100755 --- a/ci/envs/host-config +++ b/ci/envs/host-config @@ -16,6 +16,7 @@ huge_pages=2 # QEMU executable path and number of cpus for guest qemu=/usr/local/bin/qemu-system-x86_64 guest_cpus=2 +pcm_memory=/root/pcm/pcm-memory.x # Isolated cpus for nfv, must be given as a range '-' and Numa node1 CPU's should be considered host_isolcpus=`lscpu | grep "NUMA node1 CPU(s)"| awk -F ':' '{print \$2}' | sed 's/[[:space:]]//g'` @@ -44,3 +45,13 @@ function err_exit { exit $exitCode } +function copyLogs { + echo "Copying Log files from Node to Jump Server" + sudo ssh root@${HOST_IP} "cd /root;tar -czvf MBWInfo.tar.gz MBWInfo" + mkdir -p $WORKSPACE/build_output/log/MBWInfo + scp root@${HOST_IP}:/root/MBWInfo.tar.gz $WORKSPACE/build_output/log/MBWInfo + echo "Listing all the logs collected" + cd $WORKSPACE;ls build_output/log/MBWInfo; + sudo ssh root@${HOST_IP} "cd /root;rm -rf MBWInfo MBWInfo.tar.gz" +} + |