bpo-45243: Use connection limits to simplify sqlite3 tests#29356
bpo-45243: Use connection limits to simplify sqlite3 tests#29356serhiy-storchaka merged 13 commits intopython:mainfrom
sqlite3 tests#29356Conversation
13a40b0 to
07d012a
Compare
07d012a to
8cdb980
Compare
sqlite3 tests
|
🤖 New build scheduled with the buildbot fleet by @erlend-aasland for commit 22adb06 🤖 If you want to schedule another build, you need to add the ":hammer: test-with-buildbots" label again. |
serhiy-storchaka
left a comment
There was a problem hiding this comment.
Bigmem tests rewriting does not look correct to me. These tests are specially purposed to test the integer overflow. They try with scripts of specific length (slightly below or above INT_MAX). It does not make sense to test scripts with smaller length. They are decorated with bigmemtest because they require a large amount of RAM and should be skipped if it is not enough.
The C code explicitly checks the current connection limit (
cpython/Modules/_sqlite/cursor.c Lines 730 to 737 in 77a1f8d
cpython/Modules/_sqlite/statement.c Lines 62 to 68 in 77a1f8d |
|
@serhiy-storchaka, let me know if you want me to revert the bigmem tests. I believe it is correct to change them, though (see my previous comment). |
serhiy-storchaka
left a comment
There was a problem hiding this comment.
Okay, let change these tests.
|
Thanks for reviewing, @serhiy-storchaka. What do you think of my proposed patch in #29356 (comment)? I guess it is out of scope for this PR, but I think we should apply it. |
|
FYI, I'll merge in |
|
CI is ok; ready for merge :) I'll create an issue regarding the length checks. |
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
build-in round is missing if SQLITE_OMIT_FLOATING_POINT is defined
|
Thank you for reviewing, Serhiy. The PR is in a better shape now. |
https://bugs.python.org/issue45243