From a1ff2772202a904f62f039933b890e0bf8b0d982 Mon Sep 17 00:00:00 2001 From: Manuel Buil Date: Mon, 21 Nov 2016 14:32:00 +0100 Subject: Clean up sfc-odl test case Some scripts are not more used so we remove them Change-Id: Ia402026e74e4322893c22470cfba4a8ccf2199d5 Signed-off-by: Manuel Buil --- tests/functest/odl-sfc/prepare_odl_sfc.bash | 38 ----------------------------- 1 file changed, 38 deletions(-) delete mode 100755 tests/functest/odl-sfc/prepare_odl_sfc.bash (limited to 'tests/functest/odl-sfc/prepare_odl_sfc.bash') diff --git a/tests/functest/odl-sfc/prepare_odl_sfc.bash b/tests/functest/odl-sfc/prepare_odl_sfc.bash deleted file mode 100755 index c4d8f4f8..00000000 --- a/tests/functest/odl-sfc/prepare_odl_sfc.bash +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash - -# -# Author: George Paraskevopoulos (geopar@intracom-telecom.com) -# Manuel Buil (manuel.buil@ericsson.com) -# Prepares the controller and the compute nodes for the odl-sfc testcase -# -# -# 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 -# - -ODL_SFC_LOG=/home/opnfv/functest/results/odl-sfc.log -ODL_SFC_DIR=${FUNCTEST_REPO_DIR}/opnfv_tests/features/sfc - -# Split the output to the log file and redirect STDOUT and STDERR to /dev/null -bash ${ODL_SFC_DIR}/server_presetup_CI.bash |& \ - tee -a ${ODL_SFC_LOG} 1>/dev/null 2>&1 - -# Get return value from PIPESTATUS array (bash specific feature) -ret_val=${PIPESTATUS[0]} -if [ $ret_val != 0 ]; then - echo "The tacker server deployment failed" - exit $ret_val -fi -echo "The tacker server was deployed successfully" - -bash ${ODL_SFC_DIR}/compute_presetup_CI.bash |& \ - tee -a ${ODL_SFC_LOG} 1>/dev/null 2>&1 - -ret_val=${PIPESTATUS[0]} -if [ $ret_val != 0 ]; then - exit $ret_val -fi - -exit 0 -- cgit 1.2.3-korg