diff options
author | Martin Klozik <martinx.klozik@intel.com> | 2016-03-02 10:54:50 +0000 |
---|---|---|
committer | Maryam Tahhan <maryam.tahhan@intel.com> | 2016-03-12 09:28:20 +0000 |
commit | 5853025b59cb6e44f23a1d245a58a2cd286e03dc (patch) | |
tree | 72a228335843baae63f7ce294345265f332a0f4a /src/qemu | |
parent | a81278b11de6393390816c8b3b675a313cd0ce9f (diff) |
bugfix: Eliminate error and warning messages
Several issues have been fixed to decrease a number of warning
and error messages written to the standard output. Error and
warning messages causes false build failure report by Jenkins,
in case that internal parsing of job output is enabled.
Fixed issues:
* qemu makefile updated
* shared directories between host and guests are forcibly deleted
before vsperf execution
* nonstop_tsc cpu flag is exported from host to the guest
* vloop-vnf help has been updated and changelog added
* TCL scripts updated to print info instead of warning
* vloop-vnf image updated to avoid snmpd related warnings
Change-Id: Id9ca014bae8fa34772b67d1ebab3431682682931
JIRA: VSPERF-206
Signed-off-by: Martin Klozik <martinx.klozik@intel.com>
Reviewed-by: Maryam Tahhan <maryam.tahhan@intel.com>
Diffstat (limited to 'src/qemu')
-rwxr-xr-x | src/qemu/Makefile | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/qemu/Makefile b/src/qemu/Makefile index 1268f571..4603b273 100755 --- a/src/qemu/Makefile +++ b/src/qemu/Makefile @@ -1,7 +1,7 @@ # makefile to manage qemu package # -# Copyright (c) 2015 OPNFV and Intel Corporation. +# Copyright (c) 2015-2016 OPNFV and Intel Corporation. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -24,6 +24,7 @@ include ../package-list.mk WORK_DIR = qemu TAG_DONE_FLAG = $(WORK_DIR)/.$(QEMU_TAG).done +INSTALL_TARGET = force_make force_install CONFIG_CMD = CONFIG_CMD += ./configure CONFIG_CMD += --target-list="x86_64-softmmu" @@ -34,16 +35,10 @@ all: force_make .PHONY: install force_install config force_make -# install depends on make -force_install: force_make - @echo "Finished making $(WORK_DIR) " - config $(WORK_DIR)/Makefile: $(WORK_DIR)/configure $(AT)cd $(WORK_DIR); $(CONFIG_CMD) @echo "Configure done" -INSTALL_TARGET = force_install force_make - force_make: $(WORK_DIR)/Makefile $(AT)cd $(WORK_DIR) && git pull $(QEMU_URL) $(QEMU_TAG) $(AT)echo "git pull done" |