aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-dpdk/test/example/simple_pipeline/pktio_env
blob: c2cccffbcc99acc701cdc084513a3d6aaf256232 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/bin/sh
#
# Copyright (c) 2020, Marvell
# Copyright (c) 2020, Nokia
# All rights reserved.
#
# SPDX-License-Identifier:	BSD-3-Clause
#
# Script to setup interfaces used for running application on linux-dpdk.
#
# For linux-dpdk the default behavior is to create two pcap interfaces which
# use udp64.pcap file to inject traffic. An output pcap file is generated by
# the second interface.
#
# Network set-up
# IF0 <---> IF1

PCAP_IN=`find . ${TEST_DIR} $(dirname $0) -name udp64.pcap -print -quit`
IF0=0
IF1=1

export ODP_PLATFORM_PARAMS="--no-pci \
--vdev net_pcap0,rx_pcap=${PCAP_IN},tx_pcap=/dev/null \
--vdev net_pcap1,rx_pcap=${PCAP_IN},tx_pcap=pcapout.pcap"

echo "Using PCAP_IN = ${PCAP_IN}"

if [ "$0" = "$BASH_SOURCE" ]; then
	echo "Error: Platform specific env file has to be sourced."
fi

validate_result()
{
	if [ `stat -c %s pcapout.pcap` -ne `stat -c %s  ${PCAP_IN}` ]; then
		echo "File sizes disagree"
		exit 1
	fi

	rm -f pcapout.pcap
}

setup_interfaces()
{
	echo "pktio: setting up test interfaces $IF0, $IF1."
	return 0
}

cleanup_interfaces()
{
	echo "pktio: cleaning up test interfaces $IF0, $IF1."
	return 0
}