diff options
author | drh <drh@noemail.net> | 2020-01-18 19:07:00 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2020-01-18 19:07:00 +0000 |
commit | a01fda7113a61a1b02b6903c056e29f3919e0949 (patch) | |
tree | e8453ad7b1836c4bdace8e4d9754d53405373f05 /test/tclsqlite.test | |
parent | 591711751e2c8f42acf223ea99afad52128ba9ac (diff) | |
download | sqlite-a01fda7113a61a1b02b6903c056e29f3919e0949.tar.gz sqlite-a01fda7113a61a1b02b6903c056e29f3919e0949.zip |
Disable a redundant test case that uses a very large stack, and hence
is unable to run with -fsanitize=undefined,address.
FossilOrigin-Name: 3c63f68e12af36e9fd9a3dd4daec9402e75e80bcd819d39c0215a427fd0d7803
Diffstat (limited to 'test/tclsqlite.test')
-rw-r--r-- | test/tclsqlite.test | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/tclsqlite.test b/test/tclsqlite.test index b01da0ec2..c111325bc 100644 --- a/test/tclsqlite.test +++ b/test/tclsqlite.test @@ -371,9 +371,10 @@ ifcapable tclvar { db function r1 userfunc_r1 execsql {SELECT r1(10)} } {55} - do_test tcl-9.11 { - execsql {SELECT r1(100)} - } {5050} + # Fails under -fsanitize=address,undefined due to stack overflow + # do_test tcl-9.11 { + # execsql {SELECT r1(100)} + # } {5050} } # Tests for the new transaction method |