summaryrefslogtreecommitdiffstats
path: root/ci/envs/host-run-qemu.sh
diff options
context:
space:
mode:
authorshravani <shravani.p@tcs.com>2016-09-13 15:23:09 +0530
committershravani <shravani.p@tcs.com>2016-09-13 15:45:36 +0530
commitb8f6485d5a5c66f0fce566e59b8b5891c6a7f571 (patch)
treec656ae6a20273c6c6a9e080f894e89043ab2e44d /ci/envs/host-run-qemu.sh
parent7209c685c8bea4ed6cc2f388ef0a65f1fac5b3ed (diff)
Execution of kvm4nfv cyclictest based on job type.
This patch contains the updated test scripts which will select the node and test run time for performing cyclictest case based on the job type. Change-Id: Ia54e98faac2f5da956688f1ca57664cea1151d84 Signed-off-by: Shravani <shravani.p@tcs.com>
Diffstat (limited to 'ci/envs/host-run-qemu.sh')
-rwxr-xr-xci/envs/host-run-qemu.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/ci/envs/host-run-qemu.sh b/ci/envs/host-run-qemu.sh
index 487aebe66..400e9e306 100755
--- a/ci/envs/host-run-qemu.sh
+++ b/ci/envs/host-run-qemu.sh
@@ -9,8 +9,11 @@
## http://www.apache.org/licenses/LICENSE-2.0
###############################################################################
+source utils.sh
source host-config
+HOST_IP=$( getHostIP )
+
cpumask () {
m=$((1<<${1}))
printf 0x%x ${m}
@@ -28,7 +31,7 @@ qmp_sock="/tmp/qmp-sock-$$"
# -nographic -serial /dev/null -parallel /dev/null
${qemu} -smp ${guest_cpus} -drive file=/root/guest1.qcow2 -daemonize \
- -netdev user,id=net0,hostfwd=tcp:10.2.117.23:5555-:22 \
+ -netdev user,id=net0,hostfwd=tcp:$HOST_IP:5555-:22 \
-realtime mlock=on -mem-prealloc -enable-kvm -m 1G \
-mem-path /mnt/hugetlbfs-1g \
-device virtio-net-pci,netdev=net0 \