summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlya Maximets <i.maximets@samsung.com>2018-10-12 17:40:38 +0300
committerIan Stokes <ian.stokes@intel.com>2018-10-19 11:30:15 +0100
commit55162e59c1fba058e221a3ba79f6c87fdcd9d207 (patch)
tree9e0358c4c433fc14bccb0fe2fe66849bebb9e2d4
parent4d6b80b78cb7b43eebeadfcd2399fbc6c5a59795 (diff)
downloadopenvswitch-55162e59c1fba058e221a3ba79f6c87fdcd9d207.tar.gz
dpif-netdev.at: Add missing backslash.
Lines splitted without '\' and the second line is never executed. Fixes: b10d46a60013 ("tests: Check dpif-netdev odp_actions consistency.") Signed-off-by: Ilya Maximets <i.maximets@samsung.com> Signed-off-by: Ian Stokes <ian.stokes@intel.com>
-rw-r--r--tests/dpif-netdev.at12
1 files changed, 8 insertions, 4 deletions
diff --git a/tests/dpif-netdev.at b/tests/dpif-netdev.at
index fff0460ad..223dfd236 100644
--- a/tests/dpif-netdev.at
+++ b/tests/dpif-netdev.at
@@ -82,8 +82,10 @@ DPIF_NETDEV_DUMMY_IFACE([dummy-pmd])
m4_define([DPIF_NETDEV_MISS_FLOW_INSTALL],
[AT_SETUP([dpif-netdev - miss upcall key matches flow_install - $1])
OVS_VSWITCHD_START(
- [add-port br0 p1 -- set interface p1 type=$1 options:pstream=punix:$OVS_RUNDIR/p0.sock
- set bridge br0 datapath-type=dummy other-config:datapath-id=1234 fail-mode=secure], [], [],
+ [add-port br0 p1 \
+ -- set interface p1 type=$1 options:pstream=punix:$OVS_RUNDIR/p0.sock \
+ -- set bridge br0 datapath-type=dummy \
+ other-config:datapath-id=1234 fail-mode=secure], [], [],
[m4_if([$1], [dummy-pmd], [--dummy-numa="0,0,0,0,1,1,1,1"], [])])
AT_CHECK([ovs-appctl vlog/set dpif:dbg dpif_netdev:dbg])
@@ -121,8 +123,10 @@ DPIF_NETDEV_MISS_FLOW_INSTALL([dummy-pmd])
m4_define([DPIF_NETDEV_MISS_FLOW_DUMP],
[AT_SETUP([dpif-netdev - miss upcall key matches flow_dump - $1])
OVS_VSWITCHD_START(
- [add-port br0 p1 -- set interface p1 type=$1 options:pstream=punix:$OVS_RUNDIR/p0.sock
- set bridge br0 datapath-type=dummy other-config:datapath-id=1234 fail-mode=secure], [], [],
+ [add-port br0 p1 \
+ -- set interface p1 type=$1 options:pstream=punix:$OVS_RUNDIR/p0.sock \
+ -- set bridge br0 datapath-type=dummy \
+ other-config:datapath-id=1234 fail-mode=secure], [], [],
[m4_if([$1], [dummy-pmd], [--dummy-numa="0,0,0,0,1,1,1,1"], [])])
AT_CHECK([ovs-appctl upcall/disable-ufid], [0], [Datapath dumping tersely using UFID disabled
], [])