This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Arfrever
Recipients Arfrever, benjamin.peterson, georg.brandl, pitrou
Date 2012-09-25.09:40:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1348566044.22.0.909419846865.issue16035@psf.upfronthosting.co.za>
In-reply-to
Content
The fix for issue #13992 introduced segmentation fault in test suite of apsw (http://code.google.com/p/apsw/) (with Python 2.7, 3.2 and 3.3).

$ python2.7 setup.py build
running build
running build_ext
SQLite: Using system sqlite include/libraries
building 'apsw' extension
creating build
creating build/temp.linux-x86_64-2.7
creating build/temp.linux-x86_64-2.7/src
x86_64-pc-linux-gnu-gcc -pthread -DNDEBUG -O2 -fPIC -DEXPERIMENTAL=1 -DNDEBUG=1 -DAPSW_FORK_CHECKER=1 -DSQLITE_OMIT_LOAD_EXTENSION=1 -Isrc -I/usr/include/python2.7 -c src/apsw.c -o build/temp.linux-x86_64-2.7/src/apsw.o
In file included from /usr/include/python2.7/Python.h:8:0,
                 from src/apsw.c:73:
/usr/include/python2.7/pyconfig.h:1161:0: warning: "_POSIX_C_SOURCE" redefined [enabled by default]
/usr/include/features.h:215:0: note: this is the location of the previous definition
creating build/lib.linux-x86_64-2.7
x86_64-pc-linux-gnu-gcc -pthread -shared -O2 build/temp.linux-x86_64-2.7/src/apsw.o -L/usr/lib64 -lsqlite3 -lpython2.7 -o build/lib.linux-x86_64-2.7/apsw.so
$ PYTHONPATH="build/lib.linux-x86_64-2.7" python2.7 tests.py -v
                Python /usr/bin/python2.7 sys.version_info(major=2, minor=7, micro=4, releaselevel='alpha', serial=0)
Testing with APSW file /tmp/apsw-3.7.14-r1/build/lib.linux-x86_64-2.7/apsw.so
          APSW version 3.7.14-r1
    SQLite lib version 3.7.14
SQLite headers version 3007014
    Using amalgamation False
testAggregateFunctions (__main__.APSW)
Verify aggregate functions ... Segmentation fault
History
Date User Action Args
2012-09-25 09:40:44Arfreversetrecipients: + Arfrever, georg.brandl, pitrou, benjamin.peterson
2012-09-25 09:40:44Arfreversetmessageid: <1348566044.22.0.909419846865.issue16035@psf.upfronthosting.co.za>
2012-09-25 09:40:43Arfreverlinkissue16035 messages
2012-09-25 09:40:42Arfrevercreate