Your message dated Tue, 20 Feb 2018 18:50:05 +0000
with message-id <e1eoczn-0007rd...@fasolo.debian.org>
and subject line Bug#889813: fixed in python-cffi 1.11.4-1
has caused the Debian Bug report #889813,
regarding python-cffi: FTBFS and Debci failure with python2.7 >= 2.7.14-5
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
889813: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=889813
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: python-cffi
Version: 1.9.1-2
Severity: serious

https://ci.debian.net/packages/p/python-cffi/unstable/amd64/
https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/python-cffi.html

...
I: pybuild base:184: python2.7 -m pytest c/ testing/
============================= test session starts ==============================
platform linux2 -- Python 2.7.14+, pytest-3.2.1, py-1.4.34, pluggy-0.4.0
rootdir: /build/1st/python-cffi-1.9.1, inifile:
collected 1911 items

c/test_c.py 
.........s...............................................................................................................................s......................s.........................................
testing/cffi0/test_cdata.py .
testing/cffi0/test_ctypes.py 
..................s...............s.s.s.......s.........................ssssss..s..s.........................................ssssssss.
testing/cffi0/test_ffi_backend.py 
..................................................................................s...s............................................................s....................ss............s.s...s..............
testing/cffi0/test_function.py ......s............s..ss..sss..
testing/cffi0/test_model.py .............
testing/cffi0/test_ownlib.py ..ss...
testing/cffi0/test_parsing.py .....................s........
testing/cffi0/test_platform.py ....
testing/cffi0/test_unicode_literals.py ............
testing/cffi0/test_verify.py 
..............................s.................................................................................................................s...s............
testing/cffi0/test_verify2.py 
..............................s.................................................................................................................s...s............
testing/cffi0/test_version.py ......
testing/cffi0/test_vgen.py 
..............................s.................................................................................................................s...s............
testing/cffi0/test_vgen2.py 
..............................s.................................................................................................................s...s............
testing/cffi0/test_zdistutils.py ......................................
testing/cffi0/test_zintegration.py ........
testing/cffi1/test_cffi_binary.py .
testing/cffi1/test_commontypes.py ...
testing/cffi1/test_dlopen.py ...............
testing/cffi1/test_dlopen_unicode_literals.py ...............
testing/cffi1/test_ffi_obj.py .............................s.............
testing/cffi1/test_new_ffi_1.py 
.................................................................................s...s..................................
testing/cffi1/test_parse_c_type.py ..................
testing/cffi1/test_re_python.py ..................
testing/cffi1/test_realize_c_type.py .........
testing/cffi1/test_recompiler.py 
.....................................................................................................................................s....
testing/cffi1/test_unicode_literals.py .......
testing/cffi1/test_verify1.py 
.............................s..........................................................................s.....xxx....x......................s...s....s...s
testing/cffi1/test_zdist.py .......................
testing/embedding/test_basic.py ...
testing/embedding/test_performance.py .....
testing/embedding/test_recursive.py .
testing/embedding/test_thread.py ...F
testing/embedding/test_tlocal.py .

=================================== FAILURES ===================================
____________________ TestThread.test_load_in_parallel_more _____________________

self = <testing.embedding.test_thread.TestThread instance at 0x7fe63e67af80>

    def test_load_in_parallel_more(self):
        add2_cffi = self.prepare_module('add2')
        add3_cffi = self.prepare_module('add3')
        self.compile('thread3-test', [add2_cffi, add3_cffi], threads=True)
        for i in range(150):
>           output = self.execute('thread3-test')

testing/embedding/test_thread.py:55: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <testing.embedding.test_thread.TestThread instance at 0x7fe63e67af80>
name = 'thread3-test'

    def execute(self, name):
        path = self.get_path()
        print('running %r in %r' % (name, path))
        executable_name = name
        if sys.platform == 'win32':
            executable_name = os.path.join(path, executable_name + '.exe')
        else:
            executable_name = os.path.join('.', executable_name)
        popen = self._run_base([executable_name], cwd=path,
                               stdout=subprocess.PIPE,
                               universal_newlines=True)
        result = popen.stdout.read()
        err = popen.wait()
        if err:
>           raise OSError("%r failed with exit code %r" % (name, err))
E           OSError: 'thread3-test' failed with exit code -11

testing/embedding/test_basic.py:175: OSError
----------------------------- Captured stdout call -----------------------------
* setting env var 'LD_LIBRARY_PATH' to 
'/usr/bin:/tmp/ffi-0/embedding/test_load_in_parallel_more'
('RUNNING:', ['/usr/bin/python2.7', 
'/tmp/ffi-0/embedding/test_load_in_parallel_more/add3.py'], 
{'universal_newlines': True, 'cwd': 
'/tmp/ffi-0/embedding/test_load_in_parallel_more', 'stdout': -1})
generating ./_add3_cffi.c
running build_ext
building '_add3_cffi' extension
x86_64-linux-gnu-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes 
-fno-strict-aliasing -g -O2 -fstack-protector-strong -Wformat 
-Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC 
-I/usr/include/python2.7 -c _add3_cffi.c -o ./_add3_cffi.o
x86_64-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions 
-Wl,-z,relro -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall 
-Wstrict-prototypes -Wdate-time -D_FORTIFY_SOURCE=2 -g 
-fdebug-prefix-map=/build/python2.7-Pq8rKy/python2.7-2.7.14=. 
-fstack-protector-strong -Wformat -Werror=format-security -Wl,-z,relro -g -O2 
-fstack-protector-strong -Wformat -Werror=format-security -Wdate-time 
-D_FORTIFY_SOURCE=2 ./_add3_cffi.o -lpython2.7 -o ./_add3_cffi.so
FILENAME: /tmp/ffi-0/embedding/test_load_in_parallel_more/_add3_cffi.so
compiling thread3-test with 
['/tmp/ffi-0/embedding/test_two_modules/_add2_cffi.so', 
'/tmp/ffi-0/embedding/test_load_in_parallel_more/_add3_cffi.so']
running 'thread3-test' in '/tmp/ffi-0/embedding/test_load_in_parallel_more'
('RUNNING:', ['./thread3-test'], {'universal_newlines': True, 'cwd': 
'/tmp/ffi-0/embedding/test_load_in_parallel_more', 'stdout': -1})
running 'thread3-test' in '/tmp/ffi-0/embedding/test_load_in_parallel_more'
('RUNNING:', ['./thread3-test'], {'universal_newlines': True, 'cwd': 
'/tmp/ffi-0/embedding/test_load_in_parallel_more', 'stdout': -1})
running 'thread3-test' in '/tmp/ffi-0/embedding/test_load_in_parallel_more'
('RUNNING:', ['./thread3-test'], {'universal_newlines': True, 'cwd': 
'/tmp/ffi-0/embedding/test_load_in_parallel_more', 'stdout': -1})
running 'thread3-test' in '/tmp/ffi-0/embedding/test_load_in_parallel_more'
('RUNNING:', ['./thread3-test'], {'universal_newlines': True, 'cwd': 
'/tmp/ffi-0/embedding/test_load_in_parallel_more', 'stdout': -1})
running 'thread3-test' in '/tmp/ffi-0/embedding/test_load_in_parallel_more'
('RUNNING:', ['./thread3-test'], {'universal_newlines': True, 'cwd': 
'/tmp/ffi-0/embedding/test_load_in_parallel_more', 'stdout': -1})
running 'thread3-test' in '/tmp/ffi-0/embedding/test_load_in_parallel_more'
('RUNNING:', ['./thread3-test'], {'universal_newlines': True, 'cwd': 
'/tmp/ffi-0/embedding/test_load_in_parallel_more', 'stdout': -1})
running 'thread3-test' in '/tmp/ffi-0/embedding/test_load_in_parallel_more'
('RUNNING:', ['./thread3-test'], {'universal_newlines': True, 'cwd': 
'/tmp/ffi-0/embedding/test_load_in_parallel_more', 'stdout': -1})
running 'thread3-test' in '/tmp/ffi-0/embedding/test_load_in_parallel_more'
('RUNNING:', ['./thread3-test'], {'universal_newlines': True, 'cwd': 
'/tmp/ffi-0/embedding/test_load_in_parallel_more', 'stdout': -1})
running 'thread3-test' in '/tmp/ffi-0/embedding/test_load_in_parallel_more'
('RUNNING:', ['./thread3-test'], {'universal_newlines': True, 'cwd': 
'/tmp/ffi-0/embedding/test_load_in_parallel_more', 'stdout': -1})
running 'thread3-test' in '/tmp/ffi-0/embedding/test_load_in_parallel_more'
('RUNNING:', ['./thread3-test'], {'universal_newlines': True, 'cwd': 
'/tmp/ffi-0/embedding/test_load_in_parallel_more', 'stdout': -1})
running 'thread3-test' in '/tmp/ffi-0/embedding/test_load_in_parallel_more'
('RUNNING:', ['./thread3-test'], {'universal_newlines': True, 'cwd': 
'/tmp/ffi-0/embedding/test_load_in_parallel_more', 'stdout': -1})
running 'thread3-test' in '/tmp/ffi-0/embedding/test_load_in_parallel_more'
('RUNNING:', ['./thread3-test'], {'universal_newlines': True, 'cwd': 
'/tmp/ffi-0/embedding/test_load_in_parallel_more', 'stdout': -1})
running 'thread3-test' in '/tmp/ffi-0/embedding/test_load_in_parallel_more'
('RUNNING:', ['./thread3-test'], {'universal_newlines': True, 'cwd': 
'/tmp/ffi-0/embedding/test_load_in_parallel_more', 'stdout': -1})
running 'thread3-test' in '/tmp/ffi-0/embedding/test_load_in_parallel_more'
('RUNNING:', ['./thread3-test'], {'universal_newlines': True, 'cwd': 
'/tmp/ffi-0/embedding/test_load_in_parallel_more', 'stdout': -1})
running 'thread3-test' in '/tmp/ffi-0/embedding/test_load_in_parallel_more'
('RUNNING:', ['./thread3-test'], {'universal_newlines': True, 'cwd': 
'/tmp/ffi-0/embedding/test_load_in_parallel_more', 'stdout': -1})
running 'thread3-test' in '/tmp/ffi-0/embedding/test_load_in_parallel_more'
('RUNNING:', ['./thread3-test'], {'universal_newlines': True, 'cwd': 
'/tmp/ffi-0/embedding/test_load_in_parallel_more', 'stdout': -1})
running 'thread3-test' in '/tmp/ffi-0/embedding/test_load_in_parallel_more'
('RUNNING:', ['./thread3-test'], {'universal_newlines': True, 'cwd': 
'/tmp/ffi-0/embedding/test_load_in_parallel_more', 'stdout': -1})
running 'thread3-test' in '/tmp/ffi-0/embedding/test_load_in_parallel_more'
('RUNNING:', ['./thread3-test'], {'universal_newlines': True, 'cwd': 
'/tmp/ffi-0/embedding/test_load_in_parallel_more', 'stdout': -1})
running 'thread3-test' in '/tmp/ffi-0/embedding/test_load_in_parallel_more'
('RUNNING:', ['./thread3-test'], {'universal_newlines': True, 'cwd': 
'/tmp/ffi-0/embedding/test_load_in_parallel_more', 'stdout': -1})
running 'thread3-test' in '/tmp/ffi-0/embedding/test_load_in_parallel_more'
('RUNNING:', ['./thread3-test'], {'universal_newlines': True, 'cwd': 
'/tmp/ffi-0/embedding/test_load_in_parallel_more', 'stdout': -1})
running 'thread3-test' in '/tmp/ffi-0/embedding/test_load_in_parallel_more'
('RUNNING:', ['./thread3-test'], {'universal_newlines': True, 'cwd': 
'/tmp/ffi-0/embedding/test_load_in_parallel_more', 'stdout': -1})
running 'thread3-test' in '/tmp/ffi-0/embedding/test_load_in_parallel_more'
('RUNNING:', ['./thread3-test'], {'universal_newlines': True, 'cwd': 
'/tmp/ffi-0/embedding/test_load_in_parallel_more', 'stdout': -1})
running 'thread3-test' in '/tmp/ffi-0/embedding/test_load_in_parallel_more'
('RUNNING:', ['./thread3-test'], {'universal_newlines': True, 'cwd': 
'/tmp/ffi-0/embedding/test_load_in_parallel_more', 'stdout': -1})
running 'thread3-test' in '/tmp/ffi-0/embedding/test_load_in_parallel_more'
('RUNNING:', ['./thread3-test'], {'universal_newlines': True, 'cwd': 
'/tmp/ffi-0/embedding/test_load_in_parallel_more', 'stdout': -1})
=============================== warnings summary ===============================
c/test_c.py::test_cast_with_functionptr
  /build/1st/python-cffi-1.9.1/c/test_c.py:2013: UserWarning: implicit cast 
from 'char *' to a different pointer type: will be forbidden in the future 
(check that the types are as you expect; use an explicit ffi.cast() if they are 
correct)
    newp(BStructPtr, [cast(BCharP, 0)])

testing/cffi0/test_verify.py::test_bogus_ptr
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xc2696286x40a944e6' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify.py::test_nonfull_enum
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xf1463bd1x173fc73' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify.py::test_keepalive_ffi
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x851e24b2x6235f254' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify.py::test_verify_dlopen_flags
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x28f734fax65137eda' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_module_type
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x30aee5ex84a2ed64' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_simple_case
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x21fbada9xc62e3132' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_Wconversion_unsigned
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x4ff91dbcx5779d8d7' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_Wconversion_integer
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xa59389f5xdc74483a' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_Wconversion_floating
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xf59ea99axe756c5c4' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_Wconversion_float2int
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x7fd9eea5x407a3e01' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_Wconversion_double2int
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xbe13f744x37e13f36' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_rounding_1
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xf637b55ex7ee40f3c' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_rounding_2
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xc1a2a7bcx10a48175' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_strlen_exact
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xba322215x38478537' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_strlen_approximate
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x40bee10ax9271a32a' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_return_approximate
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xd95d2c19x914917fb' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x5f695037xee12fbb6' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xcf4a6a34x7ea947a1' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x4d68da5exb7c83ca0' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_strlen_array_of_char
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x16c93e82xddb789aa' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_longdouble
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x53c31681x6225e41e' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_longdouble_precision
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x857f57acx7c8642f2' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_all_integer_and_float_types
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xd132dff6x52bc7bdc' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_var_signed_integer_types
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x36355bbexcbde6e1b' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_var_unsigned_integer_types
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xf1901b2cxcbfda809' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_fn_signed_integer_types
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x40fda631x200ca839' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_fn_unsigned_integer_types
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x5ca05c7bx3bd8116' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_char_type
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xeaaa2a73xa1babfcd' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_wchar_type
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x54504d61xf2a730a9' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_no_argument
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xcee28dccx820bdd8' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_two_arguments
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xb234ba5ax50512cb4' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_macro
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x700a0103x8da592eb' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_nondecl_struct
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x1b610f9xbe679ed9' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_ffi_full_struct
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xb1ef46a7x6d2a27ec' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xe2598585xde6e4b0b' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x576e3015xda832bb9' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xca82b5b2x2815f9f9' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x33c18f39x4f813891' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_ffi_nonfull_struct
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x74e5d479x8158e666' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_ffi_nonfull_alignment
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x6932bc9ex7d40f28f' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_struct_bad_sized_integer
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x57713409xafd2e916' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x2e07f6f1x1bf46bf9' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x6a0090d1x1d62cd21' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xc00def81x18bf3895' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x2a62d7ffxefe6d054' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x6e33cfb3x9793a0bc' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x2a34a993x1f9d6cfc' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x8039d6c3xd394c69c' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x6847d082x1ba9f447' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x9a7ceba0xd5b6a7c1' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xde7b8d80x5db86b81' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x7476f2d0x91b1c1e1' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x20a7dee6x7879c17d' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xf9acde9ax9d56a9a5' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xbdabb8bax155865e5' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x17a6c7eaxd951cf85' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_struct_bad_sized_float
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x7536a529x82d79749' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x1fba4620xaa7dca0d' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x9a1ebc50x9a087ddd' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_struct_signedness_ignored
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x8782c10cx670df08e' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x1bb1271bx212311af' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_struct_array_field
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x931fe64fxc21be725' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_struct_array_no_length
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x862f7dabx4212bd93' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_struct_array_guess_length
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x15678d9fxe3031619' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_struct_array_c99_1
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xd9fbb746xe42b0de8' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_struct_array_c99_2
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x7631ce0fxafbc3cfe' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_struct_ptr_to_array_field
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xb5b68751x536bc395' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_struct_with_bitfield_exact
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xb1f700fdx2e0e2c12' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_struct_with_bitfield_enum
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xf32c8dedxe6881e82' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_global_constants
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x80da96d2x5342fb65' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_global_const_int_size
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x8c10e44ax6cbd35c0' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x8abf3ee1x45fcb0d2' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x3907cc37xf7e1c540' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xa6751c30x40660650' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xa6751c30xbc0f55b7' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xf1343334x1bfc26e8' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xd5d60d3x1bfc26e8' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x3b152281xf0e5cc82' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xbe273075xf0e5cc82' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xa80cda73x6679a844' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x891af3fex9e5b0795' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xc51de361x814a38b1' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_global_constants_non_int
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x72c4aba0x82f631ee' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_full_enum
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x8a76693cxc361b8d0' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xe0f5ad1dxcc152f9f' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_enum_usage
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x71e53b2cxe1d78349' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_anonymous_enum
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xca2a358dx430a087a' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_nonfull_anonymous_enum
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x88cb5f94x6fcfa30d' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_nonfull_enum_syntax2
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xd530eb4ax7a449b1f' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xd134121bx999935b0' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xbc989d29x910ee9b3' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_get_set_errno
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x75c7edd0xe8049f93' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_define_int
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x5cf3febcx16dd2989' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_access_variable
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x780c2ee6x6fbef711' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_access_address_of_variable
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x4da56540xaa982f2e' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_access_array_variable
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x68e7432ax9995744b' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_access_array_variable_length_hidden
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x76f34ba5x3d44b026' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_access_struct_variable
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xd54ab23dx84d3ac89' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_access_callback
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x8289ab9cx6a9fc678' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_access_callback_function_typedef
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x39673b4exa2d96975' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_call_with_struct_ptr
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x8a197d0ex7a526475' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_unknown_type
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x33643017xd6c45eea' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_unknown_type_2
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x6216b998x60f92b86' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_unknown_type_3
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xa8943e8bx7026b628' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_varargs
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xb420b51axca4e5e11' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_varargs_struct
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xc1812c94x6efea2e0' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_autofilled_struct_as_argument
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x457b89afxe0cf389c' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_autofilled_struct_as_argument_dynamic
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xb4e1b0ebx7b995f9a' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_func_returns_struct
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x64a18853x2710652e' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_func_as_funcptr
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x89894fefxffa45572' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_funcptr_as_argument
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x553ee06dx751be2ee' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_func_as_argument
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x9b1422bbxb22737f0' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_array_as_argument
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x6054f77x15858f9c' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_enum_as_argument
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x233a18a8x8e5d26ae' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_enum_as_function_result
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xef61040axfdcc9e68' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_enum_values
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xb4de500exbe1b74e1' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_typedef_complete_enum
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x151a1174xe4f1cfa9' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_typedef_incomplete_enum
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x8d62db9bx9c487e77' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_typedef_enum_as_argument
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xe5b33a6dx41b44eae' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_typedef_enum_as_function_result
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xcf675c13x95c4b2a' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_function_typedef
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x4d760becxff3a7962' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_opaque_integer_as_function_result
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xe3cc1ce6x404ecdde' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_return_partial_struct
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x9dec3d5fx2f82d1a2' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_take_and_return_partial_structs
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x328f6a25xf5262905' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_dont_check_unnamable_fields
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xe101e765xae06648f' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_nested_anonymous_struct_exact
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x80b15d65x750ec004' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_nested_anonymous_struct_exact_error
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xd6d40751x5f94bebd' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_nested_anonymous_struct_inexact_1
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xfef2d2aexad6ad5d6' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_nested_anonymous_struct_inexact_2
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x9b7d98x861d01a8' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_ffi_union
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xa2163a7bx4fc79676' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_ffi_union_partial
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x686c35adx7a8d8447' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_ffi_union_with_partial_struct
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xb054faf8x6d231ed2' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_ffi_union_partial_2
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xb097c8a5xa11e346b' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_ffi_union_with_partial_struct_2
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x139124f0x31086e20' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_ffi_struct_packed
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x9ce7c58ex8b8593da' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_relative_to
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x7b7094f7x5fc98e1b' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_bug1
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xcee4d60exc08d7f5a' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_bool
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x67b99f60xc3fe893e' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_bool_on_long_double
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xf389dc3bx6678a156' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_cannot_pass_float
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xba49e658xffbca8da' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x98589f21x8b53330b' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xdae5eff9xacf08f7a' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xe6f52d5x8ca5b001' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xd7828f35x991e6d6' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x2cc84136xdd763729' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x27d178f0xf5408d8a' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xe47e5ddax6bf6bb06' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x5f45db1bx1b74869e' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xdc51cb9ex81b0dea' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_addressof
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x84ed18e2xd06ef6e5' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_FILE_stored_in_stdout
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x881ad5b3xe18a7755' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_FILE_stored_explicitly
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x44054f6cxe355e810' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_global_array_with_missing_length
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x86c20ddxb28ef9b7' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_global_array_with_dotdotdot_length
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x807e699xc287e4b7' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_struct_containing_struct
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xe92a8421x6b5767ed' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x8baa529fxea375673' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_include
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xda617059x704442a6' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xf73f3c0cxaeed1629' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_include_enum
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xa7ab6052x3f9d2311' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x7582a9fcx271ef3d2' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_named_pointer_as_argument
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x6d242bc7x51d03f51' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_enum_size
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xd6d4a7e1x93a3db94' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x701d7549x3749f7ac' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x745768b4x9249f4aa' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x16072f43xf4922b4b' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xc61deb39x606bdbfe' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xf6df39bax663f2238' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xd1e4f6e2x3a4753ac' might overwrite older definitions
    % (self.verifier.get_module_name()))
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x9a23ecc5xea621af1' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_string_to_voidp_arg
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x6ac4f7eaxdf68ffaa' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_callback_indirection
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xa41a0593x402c1778' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_floatstar_argument
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x2866dc9dxfa9581dc' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_charstar_argument
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xd781eedbx193e94a' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_passing_string_or_NULL
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x672099b7x2f04c8c3' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_typeof_function
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xa4cd6709x18b3804a' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_call_with_voidstar_arg
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x91183f04x13a97219' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_dir
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x133afff4xb9c9905b' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_typeof_func_with_struct_argument
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x6ce52644x4b81aa8' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_bug_const_char_ptr_array_1
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x85ceefc0xce5f80ef' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_bug_const_char_ptr_array_2
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x2ad5f5acxc9978150' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_various_calls_direct
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x6f70f964x821955ff' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_various_calls_libffi
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xb5fbfa5bx26172808' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_ptr_to_opaque
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x52fc20bx1bb0fc74' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_errno_working_even_with_pypys_jit
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x31d163c6x47d772de' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_verify_extra_arguments
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x9cca0c10xaf649e62' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_use_local_dir
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting 'test_use_local_dir' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_define_known_value
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x8f8d0e6ax3456ee0b' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_static_const_int_known_value
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xdb8e0fexa6e7e8d2' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_const_struct_global
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x4bac5b16x65e65f2f' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_const_fields
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x2913bb8fxd5123ed5' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_win32_calling_convention_0
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xf04cbaf9x3e1ba98b' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_win32_calling_convention_1
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x5fd7ad4exffee8652' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_win32_calling_convention_2
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__xd8f0e5cdx822b539f' might overwrite older definitions
    % (self.verifier.get_module_name()))

testing/cffi0/test_verify2.py::test_win32_calling_convention_3
  /build/1st/python-cffi-1.9.1/cffi/vengine_cpy.py:191: UserWarning: 
reimporting '_cffi__x16885e65x2de1b2d5' might overwrite older definitions
    % (self.verifier.get_module_name()))

-- Docs: http://doc.pytest.org/en/latest/warnings.html
= 1 failed, 1842 passed, 64 skipped, 4 xfailed, 195 warnings in 535.85 seconds =
E: pybuild pybuild:283: test: plugin custom failed with: exit code=1: python2.7 
-m pytest c/ testing/
dh_auto_test: pybuild --test --test-pytest -i python{version} -p 2.7 returned 
exit code 13
debian/rules:17: recipe for target 'override_dh_auto_test' failed
make[1]: *** [override_dh_auto_test] Error 25

--- End Message ---
--- Begin Message ---
Source: python-cffi
Source-Version: 1.11.4-1

We believe that the bug you reported is fixed in the latest version of
python-cffi, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 889...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefano Rivera <stefa...@debian.org> (supplier of updated python-cffi package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Tue, 20 Feb 2018 10:24:15 -0800
Source: python-cffi
Binary: python-cffi python-cffi-backend python-cffi-backend-dbg python3-cffi 
python3-cffi-backend python3-cffi-backend-dbg
Architecture: source
Version: 1.11.4-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 
<python-modules-team@lists.alioth.debian.org>
Changed-By: Stefano Rivera <stefa...@debian.org>
Description:
 python-cffi - Foreign Function Interface for Python calling C code
 python-cffi-backend - Foreign Function Interface for Python calling C code - 
backend
 python-cffi-backend-dbg - Foreign Function Interface for Python calling C code 
(Debug versi
 python3-cffi - Foreign Function Interface for Python 3 calling C code
 python3-cffi-backend - Foreign Function Interface for Python 3 calling C code 
- runtime
 python3-cffi-backend-dbg - Foreign Function Interface for Python 3 calling C 
code (Debug ver
Closes: 889813
Changes:
 python-cffi (1.11.4-1) unstable; urgency=medium
 .
   [ Stefano Rivera ]
   * New upstream release.
   * Drop patches, superseded upstream.
   * Update copyright years.
   * Bump Standards-Version to 4.1.3, no changes needed.
   * Declare Rules-Requires-Root: no
   * Bump debhelper compat to 11.
   * Patch: Avoid embedded bootstrapping race in recent python2.7
     (Closes: #889813)
 .
   [ Ondřej Nový ]
   * d/control: Set Vcs-* to salsa.debian.org
   * d/copyright: Use https protocol in Format field
   * d/control: Deprecating priority extra as per policy 4.0.1
Checksums-Sha1:
 e791498fb7dc397c577d208f9748ef05f821349b 2566 python-cffi_1.11.4-1.dsc
 d0c4f7d4b6af4c438a17b2f2334f2aa5ff7cc4db 436857 python-cffi_1.11.4.orig.tar.gz
 e5ab3f8e438abe4ac995361671e20168964f6b1c 6120 
python-cffi_1.11.4-1.debian.tar.xz
 4db48522c97f62afdfdcf046c529887ec7860d5c 8113 
python-cffi_1.11.4-1_source.buildinfo
Checksums-Sha256:
 e1905b7b0c9718e95cc09efb58f21eed69b311937737bb0411d5603224150eed 2566 
python-cffi_1.11.4-1.dsc
 df9083a992b17a28cd4251a3f5c879e0198bb26c9e808c4647e0a18739f1d11d 436857 
python-cffi_1.11.4.orig.tar.gz
 972f6200bfe5c6161b23102b68e5508d37efada83a5f7b39d4b7be159377f993 6120 
python-cffi_1.11.4-1.debian.tar.xz
 7c53e3860621501c606af7d50b0bd82a451bd52d0031fcec189237bef6cd2c33 8113 
python-cffi_1.11.4-1_source.buildinfo
Files:
 83c9c6f7138c05ee65051eb2d55e2d37 2566 python optional python-cffi_1.11.4-1.dsc
 8ef0f852498908b20bc508799901fe93 436857 python optional 
python-cffi_1.11.4.orig.tar.gz
 c4284751c32edf1b53ea8b161609e125 6120 python optional 
python-cffi_1.11.4-1.debian.tar.xz
 ff9031125a66cc4b8fc75d226de236e5 8113 python optional 
python-cffi_1.11.4-1_source.buildinfo

-----BEGIN PGP SIGNATURE-----

iQFIBAEBCgAyFiEE/zEtpbjiRmXHk+j/6vGSvKo/D1EFAlqMaCMUHHN0ZWZhbm9y
QGRlYmlhbi5vcmcACgkQ6vGSvKo/D1GQxwgAg53elo4guGDgb+P7b5PfF5HQ7QpB
EffvMY36+TRpdY7UtcA9isW9ZClf7j4/kfjxqvRr00YpqMKqjRWd+ZvKPyDN1F5R
jsf1qj+OlxIem5X87RyDH2xa8LMFK8KaiWi8AOgY0ynv2SkTgMYQjsBGq+vlrMMm
Lxx1rfyZql3wFywF/98hCzlRAUjOmMUMxV3nfB671PR7eX44OA8pXaflZA7t2ZNp
6lQNpGZhi6YUUShYPkkIry5pMZdXGtOex8rcvhiALDO2tZRoXDzOFuVn33PrN6Q2
/vXQHMNk94/RYyBgKv9f5u/rGUv+TcjkHvrlUQp646q/2F9ITjLGxNPXdw==
=DbCx
-----END PGP SIGNATURE-----

--- End Message ---
_______________________________________________
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team

Reply via email to