[issue33723] test_time.test_thread_time() failed on AMD64 Debian root 3.x

2018-11-28 Thread STINNER Victor
STINNER Victor added the comment: I removed the "busy loop" tests from 3.7 and master. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue33723] test_time.test_thread_time() failed on AMD64 Debian root 3.x

2018-11-28 Thread miss-islington
miss-islington added the comment: New changeset d46d753d152a5d01f9c454d18b1ae660509d9b16 by Miss Islington (bot) in branch '3.7': bpo-33723: Remove busy loop from test_time (GH-10773) https://github.com/python/cpython/commit/d46d753d152a5d01f9c454d18b1ae660509d9b16 --

[issue33723] test_time.test_thread_time() failed on AMD64 Debian root 3.x

2018-11-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +10020 stage: resolved -> patch review ___ Python tracker ___ ___ Python-bugs-list

[issue33723] test_time.test_thread_time() failed on AMD64 Debian root 3.x

2018-11-28 Thread STINNER Victor
STINNER Victor added the comment: New changeset 48498dd57f79ab1d061c754ad6a2ebe1a7172b0e by Victor Stinner in branch 'master': bpo-33723: Remove busy loop from test_time (GH-10773) https://github.com/python/cpython/commit/48498dd57f79ab1d061c754ad6a2ebe1a7172b0e --

[issue33723] test_time.test_thread_time() failed on AMD64 Debian root 3.x

2018-11-28 Thread STINNER Victor
STINNER Victor added the comment: A test failed again on AppVeyor! In the 3.7 branch, on this test: def busy_wait(duration): deadline = time.monotonic() + duration while time.monotonic() < deadline: pass (...) def test_thread_time(self): (...) # bpo-33723:

[issue33723] test_time.test_thread_time() failed on AMD64 Debian root 3.x

2018-11-28 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +10017 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33723] test_time.test_thread_time() failed on AMD64 Debian root 3.x

2018-11-26 Thread STINNER Victor
STINNER Victor added the comment: I close again the bug. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue33723] test_time.test_thread_time() failed on AMD64 Debian root 3.x

2018-11-26 Thread miss-islington
miss-islington added the comment: New changeset 5350dd1b50e60882a2da6d53ed27e02d2b698f2e by Miss Islington (bot) in branch '3.7': bpo-33723: Fix test_time.test_thread_time() (GH-10724) https://github.com/python/cpython/commit/5350dd1b50e60882a2da6d53ed27e02d2b698f2e --

[issue33723] test_time.test_thread_time() failed on AMD64 Debian root 3.x

2018-11-26 Thread miss-islington
Change by miss-islington : -- pull_requests: +9974 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33723] test_time.test_thread_time() failed on AMD64 Debian root 3.x

2018-11-26 Thread STINNER Victor
STINNER Victor added the comment: New changeset 65c216e74f7957006ef7653b7e2afe83007c45ce by Victor Stinner in branch 'master': bpo-33723: Fix test_time.test_thread_time() (GH-10724) https://github.com/python/cpython/commit/65c216e74f7957006ef7653b7e2afe83007c45ce --

[issue33723] test_time.test_thread_time() failed on AMD64 Debian root 3.x

2018-11-26 Thread STINNER Victor
STINNER Victor added the comment: Oh. In my previous attempt, I changed the minimum time from 20 ms to 15 ms. But I didn't notice that one check uses assertLess() rather than assertGreaterEqual(). So I wrote PR 10724 to change the maximum from 15 ms to 30 ms in test_thread_time().

[issue33723] test_time.test_thread_time() failed on AMD64 Debian root 3.x

2018-11-26 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +9971 stage: resolved -> patch review ___ Python tracker ___ ___ Python-bugs-list

[issue33723] test_time.test_thread_time() failed on AMD64 Debian root 3.x

2018-11-26 Thread STINNER Victor
Change by STINNER Victor : -- resolution: fixed -> status: closed -> open ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue33723] test_time.test_thread_time() failed on AMD64 Debian root 3.x

2018-11-26 Thread STINNER Victor
STINNER Victor added the comment: New failure on AppVeyor: FAIL: test_thread_time (test.test_time.TimeTestCase) -- Traceback (most recent call last): File "C:\projects\cpython\lib\test\test_time.py", line 553, in

[issue33723] test_time.test_thread_time() failed on AMD64 Debian root 3.x

2018-11-26 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +9970 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33723] test_time.test_thread_time() failed on AMD64 Debian root 3.x

2018-07-20 Thread STINNER Victor
STINNER Victor added the comment: I changed the minimum time from 20 ms to 15 ms in test_time.test_process_time(), in Python 3.7 and master branches. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python

[issue33723] test_time.test_thread_time() failed on AMD64 Debian root 3.x

2018-07-20 Thread STINNER Victor
STINNER Victor added the comment: New changeset a7a6eac966dd52db1762c8f455c1e208df36feb4 by Victor Stinner (Miss Islington (bot)) in branch '3.7': bpo-33723: Fix test_time.test_process_time() (GH-8358) (GH-8362)

[issue33723] test_time.test_thread_time() failed on AMD64 Debian root 3.x

2018-07-20 Thread miss-islington
Change by miss-islington : -- pull_requests: +7897 stage: resolved -> patch review ___ Python tracker ___ ___ Python-bugs-list

[issue33723] test_time.test_thread_time() failed on AMD64 Debian root 3.x

2018-07-20 Thread STINNER Victor
STINNER Victor added the comment: New changeset e78dace8dcb23c371df19c9add65895adf436995 by Victor Stinner in branch 'master': bpo-33723: Fix test_time.test_process_time() (GH-8358) https://github.com/python/cpython/commit/e78dace8dcb23c371df19c9add65895adf436995 --

[issue33723] test_time.test_thread_time() failed on AMD64 Debian root 3.x

2018-07-20 Thread STINNER Victor
STINNER Victor added the comment: I reopen the issue since I got a very similar failure of test_time.test_process_time() on my laptop: the busy loop took 15.9 ms whereas the test expects at least 20 ms. I wrote PR 8358 to only require 15 ms instead. -- resolution: fixed -> status:

[issue33723] test_time.test_thread_time() failed on AMD64 Debian root 3.x

2018-07-20 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +7894 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33723] test_time.test_thread_time() failed on AMD64 Debian root 3.x

2018-07-12 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.7 ___ Python tracker ___

[issue33723] test_time.test_thread_time() failed on AMD64 Debian root 3.x

2018-07-12 Thread miss-islington
miss-islington added the comment: New changeset 4ada0cff5315627eae8208adf0209b479f497b8d by Miss Islington (bot) in branch '3.7': bpo-33723: Fix test_time.test_thread_time() (GH-8267) https://github.com/python/cpython/commit/4ada0cff5315627eae8208adf0209b479f497b8d -- nosy:

[issue33723] test_time.test_thread_time() failed on AMD64 Debian root 3.x

2018-07-12 Thread STINNER Victor
STINNER Victor added the comment: New changeset d6345def68d3a0227253da26213dadb247f786db by Victor Stinner in branch 'master': bpo-33723: Fix test_time.test_thread_time() (GH-8267) https://github.com/python/cpython/commit/d6345def68d3a0227253da26213dadb247f786db --

[issue33723] test_time.test_thread_time() failed on AMD64 Debian root 3.x

2018-07-12 Thread miss-islington
Change by miss-islington : -- pull_requests: +7803 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33723] test_time.test_thread_time() failed on AMD64 Debian root 3.x

2018-07-12 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +7802 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33723] test_time.test_thread_time() failed on AMD64 Debian root 3.x

2018-07-12 Thread STINNER Victor
STINNER Victor added the comment: The following test failed: # thread_time() should include CPU time spent in current thread... start = time.thread_time() busy_wait(0.100) stop = time.thread_time() self.assertGreaterEqual(stop - start, 0.020) # machine

[issue33723] test_time.test_thread_time() failed on AMD64 Debian root 3.x

2018-07-12 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch, patch pull_requests: +7798, 7799 stage: -> patch review ___ Python tracker ___ ___

[issue33723] test_time.test_thread_time() failed on AMD64 Debian root 3.x

2018-07-12 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch pull_requests: +7799 stage: -> patch review ___ Python tracker ___ ___

[issue33723] test_time.test_thread_time() failed on AMD64 Debian root 3.x

2018-05-31 Thread STINNER Victor
New submission from STINNER Victor : AMD64 Debian root 3.x: http://buildbot.python.org/all/#/builders/27/builds/1067 == FAIL: test_thread_time (test.test_time.TimeTestCase)