aboutsummaryrefslogtreecommitdiffstats
path: root/patches/vswitchperf/0001-ci-build-vsperf-make-qemu-system-name-arch-indep.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/vswitchperf/0001-ci-build-vsperf-make-qemu-system-name-arch-indep.patch')
-rw-r--r--patches/vswitchperf/0001-ci-build-vsperf-make-qemu-system-name-arch-indep.patch42
1 files changed, 0 insertions, 42 deletions
diff --git a/patches/vswitchperf/0001-ci-build-vsperf-make-qemu-system-name-arch-indep.patch b/patches/vswitchperf/0001-ci-build-vsperf-make-qemu-system-name-arch-indep.patch
deleted file mode 100644
index 3d3785f1..00000000
--- a/patches/vswitchperf/0001-ci-build-vsperf-make-qemu-system-name-arch-indep.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
-: Copyright (c) 2017 Enea AB and others.
-:
-: All rights reserved. This program and the accompanying materials
-: are made available under the terms of the Apache License, Version 2.0
-: which accompanies this distribution, and is available at
-: http://www.apache.org/licenses/LICENSE-2.0
-::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
-From: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
-Date: Tue, 28 Jun 2016 21:27:02 +0200
-Subject: [PATCH] ci/build-vsperf: make qemu-system name arch-indep.
-
-Instead of hardcoding x86_64 into qemu-system name, use `uname -m`.
-
-Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
----
- ci/build-vsperf.sh | 7 ++++---
- 1 file changed, 4 insertions(+), 3 deletions(-)
-
-diff --git a/ci/build-vsperf.sh b/ci/build-vsperf.sh
-index a02de00..fa0d46a 100755
---- a/ci/build-vsperf.sh
-+++ b/ci/build-vsperf.sh
-@@ -87,14 +87,15 @@ TEST_REPORT_LOG_DIR="${HOME}/opnfv/$PROJECT/results/$BRANCH"
- # parameters:
- # none
- function terminate_vsperf() {
-+ local qemu_system_name="qemu-system-$(uname -m)"
- sudo pkill stress &> /dev/null
- sudo pkill python3 &> /dev/null
-- sudo killall -9 qemu-system-x86_64 &> /dev/null
-+ sudo killall -9 "${qemu_system_name}" &> /dev/null
-
- # sometimes qemu resists to terminate, so wait a bit and kill it again
-- if pgrep qemu-system-x86_64 &> /dev/null ; then
-+ if pgrep "${qemu_system_name}" &> /dev/null ; then
- sleep 5
-- sudo killall -9 qemu-system-x86_64 &> /dev/null
-+ sudo killall -9 "${qemu_system_name}" &> /dev/null
- sleep 5
- fi
-