Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

don't use eBPF in a couple of tests #2690

Merged
merged 1 commit into from
Jul 6, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion integration/330_process_edge_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
start_suite "Test long connections (procspy) between processes"

weave_on "$HOST1" launch
scope_on "$HOST1" launch --probe.conntrack=false
scope_on "$HOST1" launch --probe.ebpf.connections=false --probe.conntrack=false

server_on "$HOST1"
weave_proxy_on "$HOST1" run -dti --name client alpine /bin/sh -c "while true; do \
Expand Down
4 changes: 2 additions & 2 deletions integration/340_process_edge_across_host_2_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ start_suite "Test long connections (procspy) between processes on different host
weave_on "$HOST1" launch "$HOST1" "$HOST2"
weave_on "$HOST2" launch "$HOST1" "$HOST2"

scope_on "$HOST1" launch --probe.conntrack=false
scope_on "$HOST2" launch --probe.conntrack=false
scope_on "$HOST1" launch --probe.ebpf.connections=false --probe.conntrack=false
scope_on "$HOST2" launch --probe.ebpf.connections=false --probe.conntrack=false

server_on "$HOST1"
weave_proxy_on "$HOST2" run -dti --name client alpine /bin/sh -c "while true; do \
Expand Down