~ubuntu-branches/ubuntu/quantal/python3.3/quantal-security

« back to all changes in this revision

Viewing changes to Modules/_ctypes/libffi/testsuite/libffi.call/return_sc.c

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2012-08-13 11:05:00 UTC
  • mfrom: (1.2.2)
  • Revision ID: package-import@ubuntu.com-20120813110500-9dn5gbekscobbqpz
Tags: 3.3.0~b2-1
* Python 3.3.0 beta2 release.
* Fix removal of the _tkinter and dbm extensions for multiarch builds.
  Closes: #684461.
* Use _sysconfigdata.py in distutils to initialize distutils.
  Closes: #682475.
* Fix symlink for static libpython. Closes: #684608.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
       sc < (signed char) 127; sc++)
31
31
    {
32
32
      ffi_call(&cif, FFI_FN(return_sc), &rint, values);
33
 
      CHECK(rint == (ffi_arg) sc);
 
33
      CHECK((signed char)rint == sc);
34
34
    }
35
35
  exit(0);
36
36
}