aboutsummaryrefslogtreecommitdiffstats
path: root/tests/vpp/perf/crypto/10ge2p1x710-ethip4ipsec20000tnlsw-1atnl-ip4base-int-aes256gcm-reconf.robot
AgeCommit message (Expand)AuthorFilesLines
2021-01-21Reconf: Fix bidir/unidir mismatchVratko Polak1-3/+2
2020-12-16API: deprecated IPSEC APIsJan Gelety1-1/+1
2020-11-26Re-enable 9000B tests for ipsecVratko Polak1-0/+12
2020-08-20Framework: use 'stl' in trex stateless profile namesJan Gelety1-1/+1
2020-07-23T-Rex: Add advanced stateful modeJan Gelety1-1/+1
2020-06-09Remove leading tc[nn] from test namesJuraj Linkeš1-9/+9
2020-04-06Improve pf layerPeter Mikus1-5/+7
2020-03-10Make RXQs/TXQs configurablePeter Mikus1-0/+3
2020-02-25FIX: check if t-rex is running at test setup of all perf testsJan Gelety1-1/+1
2020-02-04Ipsec: Use new plugin name in reconf testsVratko Polak1-1/+1
2020-02-04Add more reconf tests, for IPsecVratko Polak1-0/+153
ighlight">
#!/bin/bash
# Copyright (c) 2016 Cisco and/or its affiliates.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at:
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.



sudo apt-get -y install python-virtualenv

virtualenv --system-site-packages env
. env/bin/activate
pip install -r requirements.txt

cat > mock.robot <<EOF
*** test cases ***
| Temoporary placeholder test for multilink
| | log | nothing here to see
EOF

pybot mock.robot


exit 0