blob: 0ae5beae017b32782c5d5e5fff41495843dc14be [file] [log] [blame]
dana32536b2021-11-08 19:35:26 +00001# 2021 November 8
2#
3# The author disclaims copyright to this source code. In place of
4# a legal notice, here is a blessing:
5#
6# May you do good and not evil.
7# May you find forgiveness for yourself and forgive others.
8# May you share freely, never taking more than you give.
9#
10#***********************************************************************
11#
12#
13
14set testdir [file dirname $argv0]
15source $testdir/tester.tcl
16
17set testprefix zeroblobfault
18set quoted_res [db one { SELECT quote(zeroblob(2000)) }]
19
20do_faultsim_test 1 -prep {
21 sqlite3 db test.db
22} -body {
23 execsql { SELECT quote(zeroblob(2000)) }
24} -test {
25 faultsim_test_result [list 0 $::quoted_res]
26}
27
28finish_test