Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Federico Di Pierro <[email protected]>
  • Loading branch information
FedeDP committed Feb 6, 2025
1 parent 8330933 commit 5c1d8a1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ jobs:
diff -u expected_ldd_out.txt ldd_out.txt
run-e2e-tests:
name: run-e2e-tests-${{ matrix.arch }}
name: run-e2e-tests-${{ matrix.arch }}-${{ matrix.name }}
strategy:
fail-fast: false
matrix:
Expand Down
4 changes: 2 additions & 2 deletions test/e2e/tests/test_network/test_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
'image': 'nginx:1.14-alpine',
},
'curl': {
'image': 'curlimages/curl:8.11.1',
'image': 'curlimages/curl:8.12.0',
'args': ["sleep", "300"]
}
}
Expand Down Expand Up @@ -114,6 +114,6 @@ def test_curl_nginx(sinsp, run_containers: dict):
}

curl_container.exec_run(
f'curl --local-port {local_port} {destination["ip"]}')
f'curl --ipv4 --local-port {local_port} {destination["ip"]}')

assert_events(expected_events(origin, destination), sinsp)
10 changes: 5 additions & 5 deletions test/e2e/tests/test_process/test_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
'http-hello': {
'image': 'hashicorp/http-echo:1.0.0',
'args': ['-text=hello'],
'user': '11:100'
'user': '65532:50'
}
}
]
Expand Down Expand Up @@ -49,10 +49,10 @@ def test_exec_in_container(sinsp, run_containers: dict):
'evt.type': 'execve',
'proc.exe': '/http-echo',
'proc.cmdline': 'http-echo -text=hello',
'user.uid': 11,
'user.name': 'operator',
'group.gid': 100,
'group.name': 'users',
'user.uid': 65532,
'user.name': 'nonroot',
'group.gid': 50,
'group.name': 'staff',
}, {
'container.id': container_id,
'evt.category': 'process',
Expand Down

0 comments on commit 5c1d8a1

Please sign in to comment.