Skip to content

Commit

Permalink
Fix CI tests
Browse files Browse the repository at this point in the history
For some reason the CI did not like the veth names hexend_vethX

Signed-off-by: Casper Andersson <[email protected]>
  • Loading branch information
cappe987 committed Oct 12, 2023
1 parent fd17146 commit dea31b1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,17 @@ else
test=""
fi

in=hexend_veth1
out=hexend_veth2
in=veth1
out=veth2
curr_test="none"
failed=0

setup() {
ip link add dev $in type veth peer name $out
ip link set dev $in up
ip link set dev $out up
# Allow interfaces to come up
sleep 3
}

teardown() {
Expand Down

0 comments on commit dea31b1

Please sign in to comment.