diff options
author | 2025-03-03 16:19:01 -0500 | |
---|---|---|
committer | 2025-03-04 21:39:00 +0000 | |
commit | bf0146b21192cc8e97c7f3b5a427b8013b77c721 (patch) | |
tree | 1ca619ab6c0002c6e2d4d1e54554084898a41ef9 /extras/scripts/host-stack/convert_evt | |
parent | 75b66b374067ddfc4d9ed316d66250c4e60db985 (diff) |
misc: add and consolidate host stack scripts
Move all existing host stack scripts under extras/scripts/host-stack
Also add scripts for iperf/vcl performance testing
Type: improvement
Change-Id: Ia79b6bd061db49f61a0e4c6577cf45afe0323eb1
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'extras/scripts/host-stack/convert_evt')
-rwxr-xr-x | extras/scripts/host-stack/convert_evt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/extras/scripts/host-stack/convert_evt b/extras/scripts/host-stack/convert_evt new file mode 100755 index 00000000000..1aba67d0268 --- /dev/null +++ b/extras/scripts/host-stack/convert_evt @@ -0,0 +1,12 @@ +#!/usr/bin/env bash + +# This depends on c2cpel and cpeldump. Enable their compilation by: +# ccmake build-root/build-vpp-native/vpp/ +# and turning on VPP_BUILD_PERFTOOL + +BIN_PATH=../../../build-root/install-vpp-native/vpp/bin +C2CPEL_BIN=$BIN_PATH/c2cpel +CPELDUMP_BIN=$BIN_PATH/cpeldump + +$C2CPEL_BIN --in $1 --out /tmp/tmp_file.cpel +$CPELDUMP_BIN --in /tmp/tmp_file.cpel --out $2 |