Skip to content

Commit

Permalink
packet-type-aware.at: Avoid GNU extension
Browse files Browse the repository at this point in the history
\t is GNU sed extension.

Signed-off-by: YAMAMOTO Takashi <[email protected]>
Acked-by: Ben Pfaff <[email protected]>
  • Loading branch information
yamt committed Jul 15, 2017
1 parent da88b55 commit 5d94135
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/packet-type-aware.at
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ ovs-vsctl \

### Verify datapath configuration
AT_CHECK([
ovs-appctl dpif/show | grep -v hit | sed 's/\t/ /g' | sed 's./[[0-9]]\{1,\}..'
ovs-appctl dpif/show | grep -v hit | sed "s/$(printf \\t)/ /g" | sed 's./[[0-9]]\{1,\}..'
], [0], [dnl
br-in1:
br-in1 65534: (dummy-internal)
Expand Down

0 comments on commit 5d94135

Please sign in to comment.