[issue44949] test_readline: test_auto_history_disabled() fails randomly on aarch64 RHEL8 Refleaks 3.9, 3.10 and 3.x

2022-02-17 Thread Łukasz Langa

Łukasz Langa  added the comment:


New changeset b1bc04df817ecb3fb9fdbefa3782efea54488e6f by Miss Islington (bot) 
in branch '3.8':
bpo-44949: Fix test_readline auto history tests (GH-27813) (GH-31118)
https://github.com/python/cpython/commit/b1bc04df817ecb3fb9fdbefa3782efea54488e6f


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue44949] test_readline: test_auto_history_disabled() fails randomly on aarch64 RHEL8 Refleaks 3.9, 3.10 and 3.x

2022-02-03 Thread miss-islington


Change by miss-islington :


--
pull_requests: +29299
pull_request: https://github.com/python/cpython/pull/31118

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue44949] test_readline: test_auto_history_disabled() fails randomly on aarch64 RHEL8 Refleaks 3.9, 3.10 and 3.x

2021-09-14 Thread STINNER Victor


STINNER Victor  added the comment:

Similar issue in test_readline.test_nonascii(): bpo-45195.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue44949] test_readline: test_auto_history_disabled() fails randomly on aarch64 RHEL8 Refleaks 3.9, 3.10 and 3.x

2021-08-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed
versions: +Python 3.10, Python 3.11

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue44949] test_readline: test_auto_history_disabled() fails randomly on aarch64 RHEL8 Refleaks 3.9, 3.10 and 3.x

2021-08-19 Thread Łukasz Langa

Łukasz Langa  added the comment:


New changeset 0215257c613d55bec27201683f3dcb00f1726536 by Miss Islington (bot) 
in branch '3.9':
bpo-44949: Fix test_readline auto history tests (GH-27813) (GH-27822)
https://github.com/python/cpython/commit/0215257c613d55bec27201683f3dcb00f1726536


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue44949] test_readline: test_auto_history_disabled() fails randomly on aarch64 RHEL8 Refleaks 3.9, 3.10 and 3.x

2021-08-19 Thread miss-islington


miss-islington  added the comment:


New changeset fc6ad0585e8133ee0fca05f0f8075b62fe71a95d by Miss Islington (bot) 
in branch '3.10':
bpo-44949: Fix test_readline auto history tests (GH-27813)
https://github.com/python/cpython/commit/fc6ad0585e8133ee0fca05f0f8075b62fe71a95d


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue44949] test_readline: test_auto_history_disabled() fails randomly on aarch64 RHEL8 Refleaks 3.9, 3.10 and 3.x

2021-08-19 Thread miss-islington


Change by miss-islington :


--
pull_requests: +26288
pull_request: https://github.com/python/cpython/pull/27823

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue44949] test_readline: test_auto_history_disabled() fails randomly on aarch64 RHEL8 Refleaks 3.9, 3.10 and 3.x

2021-08-19 Thread miss-islington


Change by miss-islington :


--
nosy: +miss-islington
nosy_count: 4.0 -> 5.0
pull_requests: +26287
pull_request: https://github.com/python/cpython/pull/27822

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue44949] test_readline: test_auto_history_disabled() fails randomly on aarch64 RHEL8 Refleaks 3.9, 3.10 and 3.x

2021-08-18 Thread Łukasz Langa

Łukasz Langa  added the comment:


New changeset 6fb62b42f4db56ed5efe0ca4c1059049276c1083 by Victor Stinner in 
branch 'main':
bpo-44949: Fix test_readline auto history tests (#27813)
https://github.com/python/cpython/commit/6fb62b42f4db56ed5efe0ca4c1059049276c1083


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue44949] test_readline: test_auto_history_disabled() fails randomly on aarch64 RHEL8 Refleaks 3.9, 3.10 and 3.x

2021-08-18 Thread STINNER Victor


STINNER Victor  added the comment:

I ran the test manually on the buildbot worker. Sometimes, the test process 
gets the EIO error even before getting the 2 newline bytes (b"\r\n"). I wrote 
PR 27813 to simply not expect the newline character.

Adding flush=True to the print("History length:", 
readline.get_current_history_length()) call in the Python script doesn't fix 
the issue.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue44949] test_readline: test_auto_history_disabled() fails randomly on aarch64 RHEL8 Refleaks 3.9, 3.10 and 3.x

2021-08-18 Thread STINNER Victor


Change by STINNER Victor :


--
keywords: +patch
pull_requests: +26278
stage:  -> patch review
pull_request: https://github.com/python/cpython/pull/27813

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue44949] test_readline: test_auto_history_disabled() fails randomly on aarch64 RHEL8 Refleaks 3.9, 3.10 and 3.x

2021-08-18 Thread STINNER Victor


STINNER Victor  added the comment:

I failed to reproduce the issue on Fedora 34 (readline-8.1-2.fc34.i686).

$ ./python -m test test_readline -m test_auto_history_disabled -j40 -F
(...)
0:19:35 load avg: 42.40 [10785] test_readline passed
0:19:35 load avg: 42.40 [10786] test_readline passed
0:19:35 load avg: 42.40 [10787] test_readline passed
^C
Test suite interrupted by signal SIGINT.
10787 tests OK.
Total duration: 19 min 36 sec

$ ./python -m test test_readline -j40 -F
(...)
0:03:30 load avg: 41.07 [1330] test_readline passed
0:03:31 load avg: 41.07 [1331] test_readline passed
^C
1331 tests OK.
Total duration: 3 min 31 sec
Tests result: INTERRUPTED

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue44949] test_readline: test_auto_history_disabled() fails randomly on aarch64 RHEL8 Refleaks 3.9, 3.10 and 3.x

2021-08-18 Thread STINNER Victor


Change by STINNER Victor :


--
title: test_readline: test_auto_history_disabled() fails on aarch64 RHEL8 
Refleaks 3.9, 3.10 and 3.x -> test_readline: test_auto_history_disabled() fails 
randomly on aarch64 RHEL8 Refleaks 3.9, 3.10 and 3.x

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com