summaryrefslogtreecommitdiffstats
path: root/jjb/csit/include-raw-csit-vpp-perf-hw.sh
blob: c247e76852f52acd273c2d36e8d87fb7bcd5d1f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

export TEST_TAG="PERFTEST_${TYPE^^}"

# execute csit bootstrap script if it exists
if [ ! -e bootstrap-hw-tb2.sh ]
then
    echo 'ERROR: No bootstrap-hw-tb2.sh found'
    exit 1
fi

# make sure that bootstrap-verify-perf.sh is executable
chmod +x bootstrap-hw-tb2.sh
# run the script
./bootstrap-hw-tb2.sh

# vim: ts=4 ts=4 sts=4 et :