diff options
author | mattip <matti.picus@gmail.com> | 2016-03-07 21:25:50 +0200 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2016-03-07 21:25:50 +0200 |
commit | cc23d620141bb1041efe141412591d07337bd6b8 (patch) | |
tree | 39e439600f311b9b2d681bfc673513b1a38fe40c | |
parent | expand (diff) | |
download | pypy-cc23d620141bb1041efe141412591d07337bd6b8.tar.gz pypy-cc23d620141bb1041efe141412591d07337bd6b8.tar.bz2 pypy-cc23d620141bb1041efe141412591d07337bd6b8.zip |
fix test after 3c4aee3b5f7a
-rw-r--r-- | LICENSE | 2 | ||||
-rw-r--r-- | pypy/doc/contributor.rst | 2 | ||||
-rw-r--r-- | rpython/translator/c/test/test_genc.py | 2 |
3 files changed, 5 insertions, 1 deletions
@@ -240,6 +240,7 @@ copyrighted by one or more of the following people and organizations: Kristjan Valur Jonsson David Lievens Neil Blakey-Milner + Sergey Matyunin Lutz Paelike Lucio Torre Lars Wassermann @@ -271,6 +272,7 @@ copyrighted by one or more of the following people and organizations: Aaron Tubbs Ben Darnell Roberto De Ioris + Logan Chien Juan Francisco Cantero Hurtado Ruochen Huang Jeong YunWon diff --git a/pypy/doc/contributor.rst b/pypy/doc/contributor.rst index 0805bdb2e5..e4482b7178 100644 --- a/pypy/doc/contributor.rst +++ b/pypy/doc/contributor.rst @@ -210,6 +210,7 @@ appropriate measure but it's something):: Kristjan Valur Jonsson David Lievens Neil Blakey-Milner + Sergey Matyunin Lutz Paelike Lucio Torre Lars Wassermann @@ -241,6 +242,7 @@ appropriate measure but it's something):: Aaron Tubbs Ben Darnell Roberto De Ioris + Logan Chien Juan Francisco Cantero Hurtado Ruochen Huang Jeong YunWon diff --git a/rpython/translator/c/test/test_genc.py b/rpython/translator/c/test/test_genc.py index d2c9b4b7ff..5bf9359760 100644 --- a/rpython/translator/c/test/test_genc.py +++ b/rpython/translator/c/test/test_genc.py @@ -596,7 +596,7 @@ def test_inhibit_tail_call(): t.context._graphof(foobar_fn).inhibit_tail_call = True t.source_c() lines = t.driver.cbuilder.c_source_filename.join('..', - 'rpython_translator_c_test_test_genc.c').readlines() + 'rpython_translator_c_test.c').readlines() for i, line in enumerate(lines): if '= pypy_g_foobar_fn' in line: break |