On Sat, 20 Feb 2016, Ivan Zakharyaschev wrote: > On Fri, 19 Feb 2016, Dmitry V. Levin wrote: >> Это когда-то раньше работало? > > Прошло с %check под strace загадочным образом. > > Теперь любопытным можно прочитать список unmets, которые создаст python3-3.5 > -- http://git.altlinux.org/tasks/159698/logs/events.5.1.log . > > Вот diff, который привёл к успешному прохождению -- если ldv@ не менял ничего > в сборочнице, загадка остаётся (там какой-то race? Заметьте, strace без -f): Т.к. какие-то изменения в сборочнице, вероятно, были внесены ldv@ в этот промежуток времени, запустил ещё раз try 6, чтобы проверить сборку чистого тега. > > $ git --no-pager diff 3.5.1-alt1..3.5.1-alt1.strace > diff --git a/python3.spec b/python3.spec > index be75bad..6157ad2 100644 > --- a/python3.spec > +++ b/python3.spec > @@ -61,11 +61,12 @@ > Summary: Version 3 of the Python programming language aka Python 3000 > Name: python3 > Version: %{pybasever}.1 > -Release: alt1 > +Release: alt1.strace > License: Python > Group: Development/Python3 > > BuildRequires(pre): rpm-build-python3 >= 0.1.7 > +BuildRequires(check): strace > BuildPreReq: liblzma-devel > # For Bluetooth support > # see https://bugzilla.redhat.com/show_bug.cgi?id=879720 > @@ -794,7 +795,7 @@ EOF > %add_python3_compile_exclude %_libdir/python%pybasever > > %check > -WITHIN_PYTHON_RPM_BUILD= LD_LIBRARY_PATH=`pwd` ./python -m test.regrtest > --verbose --findleaks > +WITHIN_PYTHON_RPM_BUILD= LD_LIBRARY_PATH=`pwd` strace ./python -m > test.regrtest --verbose --findleaks > > % files > % doc LICENSE README > @@ -1054,6 +1055,11 @@ WITHIN_PYTHON_RPM_BUILD= LD_LIBRARY_PATH=`pwd` > ./python -m test.regrtest --verbo > %pylibdir/Tools/scripts/run_tests.py > > %changelog > +* Sat Feb 20 2016 Ivan Zakharyaschev 3.5.1-alt1.strace > +- strace %%check (for debugging the Girar); > + I look for the pieces of the log with the errors like this: > + sed -e '/test_read_pty_output/,/ERR/ { p; }; d' log > + > * Mon Jan 18 2016 Gleb F-Malinovskiy 3.5.1-alt1 > - Updated to 3.5.1. > - Synced with Fedora python3-3.5.1-1. > > > -- > Best regards, > Ivan >