aboutsummaryrefslogtreecommitdiffstats
path: root/ci/build-vsperf.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ci/build-vsperf.sh')
-rwxr-xr-xci/build-vsperf.sh24
1 files changed, 13 insertions, 11 deletions
diff --git a/ci/build-vsperf.sh b/ci/build-vsperf.sh
index 265a2031..75edbfbb 100755
--- a/ci/build-vsperf.sh
+++ b/ci/build-vsperf.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# Copyright 2015-2017 Intel Corporation.
+# Copyright 2015-2018 Intel Corporation., Tieto
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -44,9 +44,9 @@ RESULTS_ARCHIVE="$HOME/ci_results_archive"
# CI job specific configuration
# VERIFY - run basic set of TCs with default settings
-TESTCASES_VERIFY="vswitch_add_del_bridge vswitch_add_del_bridges vswitch_add_del_vport vswitch_add_del_vports vswitch_vports_add_del_flow"
+TESTCASES_VERIFY="vswitch_add_del_bridge vswitch_add_del_bridges vswitch_add_del_vport vswitch_add_del_vports vswitch_vports_add_del_connection"
TESTPARAM_VERIFY="--integration"
-TESTCASES_VERIFY_VPP="vswitch_add_del_bridge vswitch_add_del_bridges vswitch_add_del_vport vswitch_add_del_vports vswitch_vports_add_del_connection_vpp"
+TESTCASES_VERIFY_VPP=$TESTCASES_VERIFY
TESTPARAM_VERIFY_VPP=$TESTPARAM_VERIFY
# MERGE - run selected TCs with default settings
TESTCASES_MERGE=$TESTCASES_VERIFY
@@ -55,7 +55,9 @@ TESTCASES_MERGE_VPP=$TESTCASES_VERIFY_VPP
TESTPARAM_MERGE_VPP=$TESTPARAM_VERIFY_VPP
# DAILY - run selected TCs for defined packet sizes
TESTCASES_DAILY='phy2phy_tput back2back phy2phy_tput_mod_vlan phy2phy_scalability pvp_tput pvp_back2back pvvp_tput pvvp_back2back'
+TESTCASES_DAILY_MIN='phy2phy_tput'
TESTCASES_DAILY_VPP='phy2phy_tput_vpp phy2phy_back2back_vpp pvp_tput_vpp pvp_back2back_vpp pvvp_tput_vpp pvvp_back2back_vpp'
+TESTCASES_DAILY_VPP_MIN='phy2phy_tput_vpp'
TESTPARAM_DAILY='--test-params TRAFFICGEN_PKT_SIZES=(64,128,512,1024,1518)'
TESTPARAM_DAILY_VPP=$TESTPARAM_DAILY
TESTCASES_SRIOV='pvp_tput'
@@ -184,13 +186,13 @@ function execute_vsperf() {
# by default use daily build and upload results to the OPNFV databse
if [ "$1" == "VPP" ] ; then
TESTPARAM=$TESTPARAM_DAILY_VPP
- TESTCASES=$TESTCASES_DAILY_VPP
+ TESTCASES=$TESTCASES_DAILY_VPP_MIN
# don't report VPP results into testresults DB, until TC name mapping
# for VPP tests will be defined
#OPNFVPOD="--opnfvpod=$NODE_NAME"
else
TESTPARAM=$TESTPARAM_DAILY
- TESTCASES=$TESTCASES_DAILY
+ TESTCASES=$TESTCASES_DAILY_MIN
OPNFVPOD="--opnfvpod=$NODE_NAME"
fi
;;
@@ -547,21 +549,21 @@ case $1 in
terminate_vsperf
execute_vsperf OVS_with_DPDK_and_vHost_User $1
terminate_vsperf
- execute_vsperf OVS_vanilla $1
- terminate_vsperf
+# execute_vsperf OVS_vanilla $1
+# terminate_vsperf
execute_vsperf VPP $1
terminate_vsperf
- execute_vsperf SRIOV $1
- terminate_vsperf
+# execute_vsperf SRIOV $1
+# terminate_vsperf
generate_report
push_results_to_artifactory
generate_and_push_graphs "$TESTCASES_DAILY" ",OvsDpdkVhost,"
- generate_and_push_graphs "$TESTCASES_DAILY" ",OvsVanilla,"
+# generate_and_push_graphs "$TESTCASES_DAILY" ",OvsVanilla,"
generate_and_push_graphs "$TESTCASES_DAILY_VPP" ",VppDpdkVhost,"
- generate_and_push_graphs "$TESTCASES_SRIOV" ",none,"
+# generate_and_push_graphs "$TESTCASES_SRIOV" ",none,"
cleanup