[pypy-commit] pypy default: Fix tests: the EF numbers have shifted

2015-04-08 Thread arigo
Author: Armin Rigo Branch: Changeset: r76745:2133c4325644 Date: 2015-04-08 09:43 +0200 http://bitbucket.org/pypy/pypy/changeset/2133c4325644/ Log:Fix tests: the EF numbers have shifted diff --git a/pypy/module/pypyjit/test_pypy_c/test_buffers.py b/pypy/module/pypyjit/test_pypy_c/test_buffe

[pypy-commit] pypy default: Add the guard_no_exception() that should be there

2015-04-08 Thread arigo
Author: Armin Rigo Branch: Changeset: r76746:fa50a901f61b Date: 2015-04-08 09:48 +0200 http://bitbucket.org/pypy/pypy/changeset/fa50a901f61b/ Log:Add the guard_no_exception() that should be there diff --git a/rpython/jit/metainterp/optimizeopt/test/test_optimizeopt.py b/rpython/jit/metaint

[pypy-commit] pypy default: Test and fix

2015-04-08 Thread arigo
Author: Armin Rigo Branch: Changeset: r76748:523b8af1cd1c Date: 2015-04-08 10:00 +0200 http://bitbucket.org/pypy/pypy/changeset/523b8af1cd1c/ Log:Test and fix diff --git a/rpython/jit/metainterp/optimizeopt/test/test_optimizeopt.py b/rpython/jit/metainterp/optimizeopt/test/test_optimizeopt

[pypy-commit] pypy default: Add a passing test

2015-04-08 Thread arigo
Author: Armin Rigo Branch: Changeset: r76747:46adf3dd3cb9 Date: 2015-04-08 09:56 +0200 http://bitbucket.org/pypy/pypy/changeset/46adf3dd3cb9/ Log:Add a passing test diff --git a/rpython/jit/metainterp/optimizeopt/test/test_optimizeopt.py b/rpython/jit/metainterp/optimizeopt/test/test_optim

[pypy-commit] cffi cffi-1.0: fix

2015-04-08 Thread arigo
Author: Armin Rigo Branch: cffi-1.0 Changeset: r1681:f56ddf6bed4a Date: 2015-04-08 11:12 +0200 http://bitbucket.org/cffi/cffi/changeset/f56ddf6bed4a/ Log:fix diff --git a/cffi/api.py b/cffi/api.py --- a/cffi/api.py +++ b/cffi/api.py @@ -378,9 +378,9 @@ def recompile(self): fr

[pypy-commit] pypy default: fix for cpython issue #23881 - replace test ftp servers, also close connections

2015-04-08 Thread mattip
Author: mattip Branch: Changeset: r76749:e73c45af4c52 Date: 2015-04-08 10:40 +0300 http://bitbucket.org/pypy/pypy/changeset/e73c45af4c52/ Log:fix for cpython issue #23881 - replace test ftp servers, also close connections diff --git a/lib-python/2.7/test/test_urllib2net.py b/lib-py

[pypy-commit] benchmarks single-run: merge default

2015-04-08 Thread fijal
Author: Maciej Fijalkowski Branch: single-run Changeset: r321:15d8a7e08f61 Date: 2015-04-08 11:12 +0200 http://bitbucket.org/pypy/benchmarks/changeset/15d8a7e08f61/ Log:merge default diff too long, truncating to 2000 out of 144423 lines diff --git a/benchmarks.py b/benchmarks.py --- a/bench

[pypy-commit] benchmarks single-run: improve the json format

2015-04-08 Thread fijal
Author: Maciej Fijalkowski Branch: single-run Changeset: r322:fc84a3202e27 Date: 2015-04-08 11:49 +0200 http://bitbucket.org/pypy/benchmarks/changeset/fc84a3202e27/ Log:improve the json format diff --git a/bench-data.json b/bench-data.json --- a/bench-data.json +++ b/bench-data.json @@ -9,6

[pypy-commit] benchmarks single-run: events is a list not a dict

2015-04-08 Thread fijal
Author: Maciej Fijalkowski Branch: single-run Changeset: r323:cd369a185e0a Date: 2015-04-08 11:53 +0200 http://bitbucket.org/pypy/benchmarks/changeset/cd369a185e0a/ Log:events is a list not a dict diff --git a/runner.py b/runner.py --- a/runner.py +++ b/runner.py @@ -27,7 +27,7 @@ f

[pypy-commit] benchmarks single-run: tweak the json

2015-04-08 Thread fijal
Author: Maciej Fijalkowski Branch: single-run Changeset: r324:aac968027850 Date: 2015-04-08 12:14 +0200 http://bitbucket.org/pypy/benchmarks/changeset/aac968027850/ Log:tweak the json diff --git a/runner.py b/runner.py --- a/runner.py +++ b/runner.py @@ -58,8 +58,8 @@ force_host = parse

[pypy-commit] buildbot default: force interpreter name

2015-04-08 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r947:2c1f75239406 Date: 2015-04-08 12:17 +0200 http://bitbucket.org/pypy/buildbot/changeset/2c1f75239406/ Log:force interpreter name diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypybuildbot/builds.py --- a/bot2/pypybuildbot/builds.py +++ b/b

[pypy-commit] buildbot default: enable the speed slave

2015-04-08 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r948:d1fa1ac08e0f Date: 2015-04-08 12:24 +0200 http://bitbucket.org/pypy/buildbot/changeset/d1fa1ac08e0f/ Log:enable the speed slave diff --git a/bot2/pypybuildbot/master.py b/bot2/pypybuildbot/master.py --- a/bot2/pypybuildbot/master.py +++ b/b

[pypy-commit] cffi cffi-1.0: Starting to reuse some code from creflect for parsing C types

2015-04-08 Thread arigo
Author: Armin Rigo Branch: cffi-1.0 Changeset: r1682:bd1b2331850e Date: 2015-04-08 16:54 +0200 http://bitbucket.org/cffi/cffi/changeset/bd1b2331850e/ Log:Starting to reuse some code from creflect for parsing C types diff --git a/new/parse_c_type.c b/new/parse_c_type.c new file mode 100644 --

[pypy-commit] pypy default: remove dead tests

2015-04-08 Thread rlamy
Author: Ronan Lamy Branch: Changeset: r76750:686fc31b6e07 Date: 2015-04-08 18:40 +0100 http://bitbucket.org/pypy/pypy/changeset/686fc31b6e07/ Log:remove dead tests diff --git a/rpython/rtyper/lltypesystem/test/test_lltype.py b/rpython/rtyper/lltypesystem/test/test_lltype.py --- a/rpython/r