-
Notifications
You must be signed in to change notification settings - Fork 10
Integration test timeout on aarch64 #37
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
Comments
@ggardet: Thanks for the report. Can you please provide an |
Here's what I used: Index: ip2unix-2.2.1/tests/meson.build
===================================================================
--- ip2unix-2.2.1.orig/tests/meson.build
+++ ip2unix-2.2.1/tests/meson.build
@@ -1,9 +1,12 @@
+strace = find_program('strace')
pytest_canidates = ['pytest-3', 'py.test-3', 'pytest', 'py.test']
pytest = find_program(pytest_canidates, required: false)
if pytest.found()
subdir('helpers')
pytest_args = [
+ '-f',
+ pytest.full_path(),
'-p', 'no:cacheprovider',
'--ip2unix-path=@0@'.format(ip2unix.full_path()),
'--libip2unix-path=@0@'.format(libip2unix.full_path()),
@@ -34,7 +37,10 @@ if pytest.found()
' tests for socket activation.')
endif
endif
- test('integration', pytest, args: pytest_args, timeout: timeout,
+
+ pytest_args += ['test_closeallfds.py']
+
+ test('integration', strace, args: pytest_args, timeout: timeout,
workdir: meson.current_source_dir(),
depends: [ip2unix, libip2unix, helper_accept_no_peer_addr],
env: ['PYTHONDONTWRITEBYTECODE=1']) I picked test_closeallfds.py, because that's the one failing. Although I don't know where the timeout comes from. and here's what I've got: strace.zip |
@etam the timeout is from
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Integration test timeout on openSUSE Tumbleweed aarch64.
Error log:
The text was updated successfully, but these errors were encountered: