sl@0: # 2007 Febuary 05 sl@0: # sl@0: # The author disclaims copyright to this source code. In place of sl@0: # a legal notice, here is a blessing: sl@0: # sl@0: # May you do good and not evil. sl@0: # May you find forgiveness for yourself and forgive others. sl@0: # May you share freely, never taking more than you give. sl@0: # sl@0: #*********************************************************************** sl@0: # This file implements regression tests for SQLite library. sl@0: # sl@0: # This file implements tests to verify that ticket #2213 has been sl@0: # fixed. sl@0: # sl@0: # sl@0: # $Id: tkt2213.test,v 1.2 2008/07/12 14:52:20 drh Exp $ sl@0: sl@0: set testdir [file dirname $argv0] sl@0: source $testdir/tester.tcl sl@0: sl@0: do_test tkt2213-1 { sl@0: sqlite3_create_function db sl@0: catchsql { sl@0: SELECT tkt2213func(tkt2213func('abcd')); sl@0: } sl@0: } {0 abcd} sl@0: sl@0: finish_test