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 ned.deily
Recipients ned.deily, python-dev, r.david.murray, vstinner
Date 2013-07-30.21:43:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1375220633.58.0.603609070885.issue18519@psf.upfronthosting.co.za>
In-reply-to
Content
The changes for this issue appear to have changed the behavior of test_sqlite.  Prior to 5643e873f06e on OS X 10.4 Tiger with the system libsqlite (3.1.3), all test cases of test_sqlite pass.  As of current tip on the same platform, there are now two failures in test_sqlite:

$ ./python -m test -v test_sqlite
== CPython 3.4.0a0 (default:c7d9a2159c6c, Jul 30 2013, 14:20:52) [GCC 4.0.1 (Apple Computer, Inc. build 5370)]
==   Darwin-8.11.0-Power_Macintosh-powerpc-32bit big-endian
==   /Volumes/cache/py/main4/3x/unix/source/build/test_python_4328
Testing with flags: sys.flags(debug=0, inspect=0, interactive=0, optimize=0, dont_write_bytecode=0, no_user_site=0, no_site=0, ignore_environment=0, verbose=0, bytes_warning=0, quiet=0, hash_randomization=1)
[1/1] test_sqlite
test_sqlite: testing with version '2.6.0', sqlite_version '3.1.3'
[...]
======================================================================
FAIL: CheckAggrExceptionInFinalize (sqlite3.test.userfunctions.AggregateTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/Volumes/cache/py/main4/3x/unix/source/Lib/sqlite3/test/userfunctions.py", line 336, in CheckAggrExceptionInFinalize
    self.fail("should have raised an OperationalError")
AssertionError: should have raised an OperationalError

======================================================================
FAIL: CheckAggrNoFinalize (sqlite3.test.userfunctions.AggregateTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/Volumes/cache/py/main4/3x/unix/source/Lib/sqlite3/test/userfunctions.py", line 309, in CheckAggrNoFinalize
    self.fail("should have raised an OperationalError")
AssertionError: should have raised an OperationalError

----------------------------------------------------------------------
Ran 232 tests in 2.988s

FAILED (failures=2, skipped=1)
test test_sqlite failed
History
Date User Action Args
2013-07-30 21:43:53ned.deilysetrecipients: + ned.deily, vstinner, r.david.murray, python-dev
2013-07-30 21:43:53ned.deilysetmessageid: <1375220633.58.0.603609070885.issue18519@psf.upfronthosting.co.za>
2013-07-30 21:43:53ned.deilylinkissue18519 messages
2013-07-30 21:43:52ned.deilycreate