This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: test_ioctl skipped -- Unable to open /dev/tty
Type: compile error Stage:
Components: Tests Versions: Python 3.9
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: Marco Sulla, eric.smith
Priority: normal Keywords:

Created on 2020-03-01 14:29 by Marco Sulla, last changed 2022-04-11 14:59 by admin.

Messages (3)
msg363063 - (view) Author: Marco Sulla (Marco Sulla) * Date: 2020-03-01 14:29
During `make test`, I get the error in the title.

(venv_3_9) marco@buzz:~/sources/cpython_test$ ll /dev/tty
crw-rw-rw- 1 root tty 5, 0 Mar  1 15:24 /dev/tty
msg363070 - (view) Author: Eric V. Smith (eric.smith) * (Python committer) Date: 2020-03-01 16:50
Can you give us some information about your operating system? Did you build this version of python yourself? Assuming so, how did you build it? Please show us the header you see when starting this version of python. How are you invoking this test?
msg363081 - (view) Author: Marco Sulla (Marco Sulla) * Date: 2020-03-01 19:26
OS: Lubuntu 18.04.4

Steps to reproduce:

sudo apt-get install git libbz2-dev liblzma-dev uuid-dev libffi-dev libsqlite3-dev libreadline-dev libssl-dev libgdbm-dev libgdbm-compat-dev tk-dev libncurses5-dev
git clone https://github.com/python/cpython.git
cd cpython
CC=gcc-9 CXX=g++-9 ./configure --enable-optimizations --with-lto
make -j 4
make test

marco@buzz:~/sources/cpython_test$ python3.9
Python 3.9.0a0 (heads/master-dirty:d8ca2354ed, Oct 30 2019, 20:25:01) 
[GCC 9.2.1 20190909] on linux
History
Date User Action Args
2022-04-11 14:59:27adminsetgithub: 83994
2020-03-01 19:26:27Marco Sullasetmessages: + msg363081
2020-03-01 16:50:10eric.smithsetnosy: + eric.smith
messages: + msg363070
2020-03-01 14:29:15Marco Sullacreate