When run through external means (such as the binding tester), the size limits tests should not change db level defaults.
This commit is contained in:
parent
bc5c65e5ab
commit
cbc913f902
|
@ -34,8 +34,6 @@ def setValueWithLimit(tr, key, value, limit):
|
||||||
tr[key] = value
|
tr[key] = value
|
||||||
|
|
||||||
def test_size_limit_option(db):
|
def test_size_limit_option(db):
|
||||||
db.options.set_transaction_timeout(2000) # 2 seconds
|
|
||||||
db.options.set_transaction_retry_limit(3)
|
|
||||||
value = b'a' * 1024
|
value = b'a' * 1024
|
||||||
|
|
||||||
setValue(db, b't1', value)
|
setValue(db, b't1', value)
|
||||||
|
@ -94,5 +92,7 @@ def test_get_approximate_size(tr):
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
clusterFile = sys.argv[1]
|
clusterFile = sys.argv[1]
|
||||||
db = fdb.open(clusterFile)
|
db = fdb.open(clusterFile)
|
||||||
|
db.options.set_transaction_timeout(2000) # 2 seconds
|
||||||
|
db.options.set_transaction_retry_limit(3)
|
||||||
test_size_limit_option(db)
|
test_size_limit_option(db)
|
||||||
test_get_approximate_size(db)
|
test_get_approximate_size(db)
|
||||||
|
|
Loading…
Reference in New Issue