Merge "CSIT-682 Usage of make-verify for vpp-csit-verify jobs"
[ci-management.git] / jjb / csit / include-raw-csit-nsh_sfc-perf-hw.sh
1 #!/bin/bash
2
3 # execute  nsh_sfc bootstrap script if it exists
4 if [ ! -e bootstrap-verify-perf-nsh_sfc.sh ]
5 then
6     echo 'ERROR: No bootstrap-verify-perf-nsh_sfc.sh found'
7     exit 1
8 fi
9
10 # make sure that bootstrap-verify-perf.sh is executable
11 chmod +x bootstrap-verify-perf-nsh_sfc.sh
12 # run the script
13 ./bootstrap-verify-perf-nsh_sfc.sh
14
15 # vim: ts=4 ts=4 sts=4 et :