diff mbox series

[ovs-dev,v2,1/4] fmt_pkt: don't subshell when calling ovs-appctl

Message ID 20231128174357.1233186-2-ihrachys@redhat.com
State Accepted
Headers show
Series misc fmt_pkt improvements | expand

Checks

Context Check Description
ovsrobot/apply-robot success apply and check: success
ovsrobot/github-robot-_Build_and_Test success github build: passed
ovsrobot/github-robot-_ovn-kubernetes success github build: passed

Commit Message

Ihar Hrachyshka Nov. 28, 2023, 5:43 p.m. UTC
Signed-off-by: Ihar Hrachyshka <ihrachys@redhat.com>
Acked-by: Mark Michelson <mmichels@redhat.com>
---
 tests/ovn-macros.at | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/tests/ovn-macros.at b/tests/ovn-macros.at
index 8dc4ec75c..3191bb6ad 100644
--- a/tests/ovn-macros.at
+++ b/tests/ovn-macros.at
@@ -876,7 +876,7 @@  fmt_pkt() {
     if [[ ! -e $ctlfile ]]; then
         start_scapy_server
     fi
-    echo $(ovs-appctl -t $ctlfile payload "$1")
+    ovs-appctl -t $ctlfile payload "$1"
 }
 
 start_scapy_server() {