aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap-verify-perf.sh
diff options
context:
space:
mode:
authorpmikus <pmikus@cisco.com>2016-04-04 15:26:41 +0200
committerGerrit Code Review <gerrit@fd.io>2016-04-05 14:22:01 +0000
commitbea34e37b99cd3312dfb5733edea7586fbc8e1c6 (patch)
tree6d76ba4c8119292226486dcd081dd46a21c7a852 /bootstrap-verify-perf.sh
parent4c597cafd320c1e68f81768e14abc9f89bbc07e2 (diff)
Add tag support to boostrap-verify-perf
- support tags in vpp-verify-perfomance-* jenkins jobs Change-Id: I7e3abfe9e552a3f2fa9ebf95df9b48bcbae3561a Signed-off-by: pmikus <pmikus@cisco.com>
Diffstat (limited to 'bootstrap-verify-perf.sh')
-rwxr-xr-xbootstrap-verify-perf.sh16
1 files changed, 12 insertions, 4 deletions
diff --git a/bootstrap-verify-perf.sh b/bootstrap-verify-perf.sh
index 746d1a0a58..c16240821c 100755
--- a/bootstrap-verify-perf.sh
+++ b/bootstrap-verify-perf.sh
@@ -76,7 +76,15 @@ function cancel_reservation {
# On script exit we cancel the reservation and delete all vpp packages
trap "cancel_reservation ${WORKING_TOPOLOGY}" EXIT
-# run performance test suite
-pybot -L TRACE \
- -v TOPOLOGY_PATH:${WORKING_TOPOLOGY} \
- -s performance tests/
+
+if [ ! -z "$TEST_TAG" ]; then
+# run specific performance tests by tag if variable is set
+ pybot -L TRACE \
+ -v TOPOLOGY_PATH:${WORKING_TOPOLOGY} \
+ -i $TEST_TAG tests/
+else
+# run full performance test suite
+ pybot -L TRACE \
+ -v TOPOLOGY_PATH:${WORKING_TOPOLOGY} \
+ -s performance tests/
+fi