Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 520380 Details for
Bug 648406
dev-python/path-py-8.1.2: fails tests on amd64-fbsd
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
build.log
build.log (text/x-log), 7.78 KB, created by
Michał Górny
on 2018-02-21 14:11:51 UTC
(
hide
)
Description:
build.log
Filename:
MIME Type:
Creator:
Michał Górny
Created:
2018-02-21 14:11:51 UTC
Size:
7.78 KB
patch
obsolete
>[32;01m * [39;49;00mPackage: dev-python/path-py-8.1.2 >[32;01m * [39;49;00mRepository: gentoo >[32;01m * [39;49;00mMaintainer: python@gentoo.org >[32;01m * [39;49;00mUSE: abi_x86_64 amd64-fbsd elibc_FreeBSD kernel_FreeBSD python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 test userland_BSD >[32;01m * [39;49;00mFEATURES: preserve-libs test userpriv >>>> Unpacking source... >>>> Unpacking path.py-8.1.2.tar.gz to /var/tmp/portage/dev-python/path-py-8.1.2/work >>>> Source unpacked in /var/tmp/portage/dev-python/path-py-8.1.2/work >>>> Preparing source in /var/tmp/portage/dev-python/path-py-8.1.2/work/path.py-8.1.2 ... >>>> Source prepared. >>>> Configuring source in /var/tmp/portage/dev-python/path-py-8.1.2/work/path.py-8.1.2 ... >>>> Source configured. >>>> Compiling source in /var/tmp/portage/dev-python/path-py-8.1.2/work/path.py-8.1.2 ... > [32;01m*[0m python2_7: running distutils-r1_run_phase distutils-r1_python_compile >/usr/bin/python2.7 setup.py build >running build >running build_py >copying path.py -> /var/tmp/portage/dev-python/path-py-8.1.2/work/path.py-8.1.2-python2_7/lib >copying test_path.py -> /var/tmp/portage/dev-python/path-py-8.1.2/work/path.py-8.1.2-python2_7/lib >warning: build_py: byte-compiling is disabled, skipping. > > [32;01m*[0m python3_4: running distutils-r1_run_phase distutils-r1_python_compile >/usr/bin/python3.4 setup.py build >running build >running build_py >copying path.py -> /var/tmp/portage/dev-python/path-py-8.1.2/work/path.py-8.1.2-python3_4/lib >copying test_path.py -> /var/tmp/portage/dev-python/path-py-8.1.2/work/path.py-8.1.2-python3_4/lib >warning: build_py: byte-compiling is disabled, skipping. > > [32;01m*[0m python3_5: running distutils-r1_run_phase distutils-r1_python_compile >/usr/bin/python3.5 setup.py build >running build >running build_py >copying path.py -> /var/tmp/portage/dev-python/path-py-8.1.2/work/path.py-8.1.2-python3_5/lib >copying test_path.py -> /var/tmp/portage/dev-python/path-py-8.1.2/work/path.py-8.1.2-python3_5/lib >warning: build_py: byte-compiling is disabled, skipping. > > [32;01m*[0m python3_6: running distutils-r1_run_phase distutils-r1_python_compile >/usr/bin/python3.6 setup.py build >running build >running build_py >copying path.py -> /var/tmp/portage/dev-python/path-py-8.1.2/work/path.py-8.1.2-python3_6/lib >copying test_path.py -> /var/tmp/portage/dev-python/path-py-8.1.2/work/path.py-8.1.2-python3_6/lib >warning: build_py: byte-compiling is disabled, skipping. > >>>> Source compiled. >>>> Test phase: dev-python/path-py-8.1.2 > [32;01m*[0m python2_7: running distutils-r1_run_phase python_test >/usr/bin/python2.7 setup.py test >running pytest >running egg_info >writing requirements to path.py.egg-info/requires.txt >writing path.py.egg-info/PKG-INFO >writing top-level names to path.py.egg-info/top_level.txt >writing dependency_links to path.py.egg-info/dependency_links.txt >reading manifest file 'path.py.egg-info/SOURCES.txt' >reading manifest template 'MANIFEST.in' >writing manifest file 'path.py.egg-info/SOURCES.txt' >running build_ext >=============================================================== test session starts =============================================================== >platform freebsd11 -- Python 2.7.14, pytest-3.2.2, py-1.4.34, pluggy-0.4.0 >rootdir: /var/tmp/portage/dev-python/path-py-8.1.2/work/path.py-8.1.2, inifile: pytest.ini >plugins: xdist-1.20.1, forked-0.2, hypothesis-3.44.26 >collected 67 items > >path.py ... >test_path.py ....................F........................................... > >==================================================================== FAILURES ===================================================================== >____________________________________________________________ TestScratchDir.test_touch ____________________________________________________________ > >self = <test_path.TestScratchDir instance at 0x80955f758> >tmpdir = local('/var/tmp/portage/dev-python/path-py-8.1.2/temp/pytest-of-portage/pytest-0/test_touch1') > > def test_touch(self, tmpdir): > # NOTE: This test takes a long time to run (~10 seconds). > # It sleeps several seconds because on Windows, the resolution > # of a file's mtime and ctime is about 2 seconds. > # > # atime isn't tested because on Windows the resolution of atime > # is something like 24 hours. > > threshold = 1 > > d = Path(tmpdir) > f = d / 'test.txt' > t0 = time.time() - threshold > f.touch() > t1 = time.time() + threshold > > assert f.exists() > assert f.isfile() > assert f.size == 0 > assert t0 <= f.mtime <= t1 > if hasattr(os.path, 'getctime'): > ct = f.ctime > assert t0 <= ct <= t1 > > time.sleep(threshold*2) > fobj = open(f, 'ab') > fobj.write('some bytes'.encode('utf-8')) > fobj.close() > > time.sleep(threshold*2) > t2 = time.time() - threshold > f.touch() > t3 = time.time() + threshold > > assert t0 <= t1 < t2 <= t3 # sanity check > > assert f.exists() > assert f.isfile() > assert f.size == 10 > assert t2 <= f.mtime <= t3 > if hasattr(os.path, 'getctime'): > ct2 = f.ctime > if os.name == 'nt': > # On Windows, "ctime" is CREATION time > assert ct == ct2 > assert ct2 < t2 > else: > # On other systems, it might be the CHANGE time > # (especially on Unix, time of inode changes) >> assert ct == ct2 or ct2 == f.mtime >E AssertionError: assert (1519221891.936789 == 1519221896.132958 or 1519221896.132958 == 1519221896.132926) >E + where 1519221896.132926 = Path(u'/var/tmp/portage/dev-python/path-py-8.1.2/temp/pytest-of-portage/pytest-0/test_touch1/test.txt').mtime > >test_path.py:310: AssertionError >======================================================= 1 failed, 66 passed in 4.73 seconds ======================================================= > [31;01m*[0m ERROR: dev-python/path-py-8.1.2::gentoo failed (test phase): > [31;01m*[0m (no error message) > [31;01m*[0m > [31;01m*[0m Call stack: > [31;01m*[0m ebuild.sh, line 124: Called src_test > [31;01m*[0m environment, line 3541: Called distutils-r1_src_test > [31;01m*[0m environment, line 955: Called _distutils-r1_run_foreach_impl 'python_test' > [31;01m*[0m environment, line 301: Called python_foreach_impl 'distutils-r1_run_phase' 'python_test' > [31;01m*[0m environment, line 3081: Called multibuild_foreach_variant '_python_multibuild_wrapper' 'distutils-r1_run_phase' 'python_test' > [31;01m*[0m environment, line 2240: Called _multibuild_run '_python_multibuild_wrapper' 'distutils-r1_run_phase' 'python_test' > [31;01m*[0m environment, line 2238: Called _python_multibuild_wrapper 'distutils-r1_run_phase' 'python_test' > [31;01m*[0m environment, line 580: Called distutils-r1_run_phase 'python_test' > [31;01m*[0m environment, line 886: Called python_test > [31;01m*[0m environment, line 3443: Called esetup.py 'test' > [31;01m*[0m environment, line 1373: Called die > [31;01m*[0m The specific snippet of code: > [31;01m*[0m "${@}" || die "${die_args[@]}"; > [31;01m*[0m > [31;01m*[0m If you need support, post the output of `emerge --info '=dev-python/path-py-8.1.2::gentoo'`, > [31;01m*[0m the complete build log and the output of `emerge -pqv '=dev-python/path-py-8.1.2::gentoo'`. > [31;01m*[0m The complete build log is located at '/var/tmp/portage/dev-python/path-py-8.1.2/temp/build.log'. > [31;01m*[0m The ebuild environment file is located at '/var/tmp/portage/dev-python/path-py-8.1.2/temp/environment'. > [31;01m*[0m Working directory: '/var/tmp/portage/dev-python/path-py-8.1.2/work/path.py-8.1.2' > [31;01m*[0m S: '/var/tmp/portage/dev-python/path-py-8.1.2/work/path.py-8.1.2'
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 648406
: 520380