* [dpdk-dev] [PATCH] scripts: test null forwarding
@ 2015-04-10 7:49 Thomas Monjalon
2015-04-13 20:16 ` Thomas Monjalon
0 siblings, 1 reply; 2+ messages in thread
From: Thomas Monjalon @ 2015-04-10 7:49 UTC (permalink / raw)
To: dev
This script ease testing of basic initializations and Rx/Tx bursts.
It may help to check obvious regressions.
In order to run it on a standard development machine, it doesn't use
neither hugepages nor real interfaces.
The optional parameters are:
- build directory (default: build)
- coremask (default: 3 i.e. cores 0 and 1)
Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
---
scripts/test-null.sh | 14 ++++++++++++++
1 file changed, 14 insertions(+)
create mode 100755 scripts/test-null.sh
diff --git a/scripts/test-null.sh b/scripts/test-null.sh
new file mode 100755
index 0000000..6f6918e
--- /dev/null
+++ b/scripts/test-null.sh
@@ -0,0 +1,14 @@
+#! /bin/sh -e
+
+build=${1:-build}
+coremask=${2:-3} # default using cores 0 and 1
+
+if grep -q SHARED_LIB=y $build/.config; then
+ export LD_LIBRARY_PATH=$build/lib:$LD_LIBRARY_PATH
+ pmd='-d librte_pmd_null.so'
+fi
+
+(sleep 1 && echo stop) |
+$build/app/testpmd -c $coremask -n 1 --no-huge \
+ $pmd --vdev eth_null1 --vdev eth_null2 -- \
+ --total-num-mbufs=2048 -ia
--
2.2.2
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [dpdk-dev] [PATCH] scripts: test null forwarding
2015-04-10 7:49 [dpdk-dev] [PATCH] scripts: test null forwarding Thomas Monjalon
@ 2015-04-13 20:16 ` Thomas Monjalon
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Monjalon @ 2015-04-13 20:16 UTC (permalink / raw)
To: dev
> This script ease testing of basic initializations and Rx/Tx bursts.
> It may help to check obvious regressions.
> In order to run it on a standard development machine, it doesn't use
> neither hugepages nor real interfaces.
>
> The optional parameters are:
> - build directory (default: build)
> - coremask (default: 3 i.e. cores 0 and 1)
>
> Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
Added BSD header and applied.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-04-13 20:16 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-10 7:49 [dpdk-dev] [PATCH] scripts: test null forwarding Thomas Monjalon
2015-04-13 20:16 ` Thomas Monjalon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).