diff options
author | drh <drh@noemail.net> | 2001-09-16 00:13:26 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2001-09-16 00:13:26 +0000 |
commit | b19a2bc6036e680d4e7d995049be5dcba96cae7f (patch) | |
tree | fb42fcfe8bcb49e0cce93f61d6fd888698798f93 /test | |
parent | 872ff86f2c0ee7b171c46609f49af16a0cc31b9c (diff) | |
download | sqlite-b19a2bc6036e680d4e7d995049be5dcba96cae7f.tar.gz sqlite-b19a2bc6036e680d4e7d995049be5dcba96cae7f.zip |
Disclaimed copyright. Preparing for release 2.0. (CVS 250)
FossilOrigin-Name: 4e926efe2b59adfec4086eb1d2ba830238facb4c
Diffstat (limited to 'test')
-rw-r--r-- | test/all.test | 35 | ||||
-rw-r--r-- | test/btree.test | 26 | ||||
-rw-r--r-- | test/btree2.test | 28 | ||||
-rw-r--r-- | test/copy.test | 26 | ||||
-rw-r--r-- | test/delete.test | 26 | ||||
-rw-r--r-- | test/expr.test | 26 | ||||
-rw-r--r-- | test/func.test | 26 | ||||
-rw-r--r-- | test/in.test | 26 | ||||
-rw-r--r-- | test/index.test | 26 | ||||
-rw-r--r-- | test/insert.test | 26 | ||||
-rw-r--r-- | test/insert2.test | 26 | ||||
-rw-r--r-- | test/lock.test | 26 | ||||
-rw-r--r-- | test/main.test | 26 | ||||
-rw-r--r-- | test/malloc.test | 26 | ||||
-rw-r--r-- | test/pager.test | 26 | ||||
-rw-r--r-- | test/printf.test | 26 | ||||
-rw-r--r-- | test/quick.test | 32 | ||||
-rw-r--r-- | test/quote.test | 26 | ||||
-rw-r--r-- | test/rowid.test | 26 | ||||
-rw-r--r-- | test/select1.test | 26 | ||||
-rw-r--r-- | test/select2.test | 26 | ||||
-rw-r--r-- | test/select3.test | 26 | ||||
-rw-r--r-- | test/select4.test | 26 | ||||
-rw-r--r-- | test/select5.test | 26 | ||||
-rw-r--r-- | test/sort.test | 26 | ||||
-rw-r--r-- | test/subselect.test | 26 | ||||
-rw-r--r-- | test/table.test | 26 | ||||
-rw-r--r-- | test/tableapi.test | 26 | ||||
-rw-r--r-- | test/tclsqlite.test | 26 | ||||
-rw-r--r-- | test/tester.tcl | 26 | ||||
-rw-r--r-- | test/trans.test | 26 | ||||
-rw-r--r-- | test/update.test | 26 | ||||
-rw-r--r-- | test/vacuum.test | 26 | ||||
-rw-r--r-- | test/where.test | 26 |
34 files changed, 271 insertions, 630 deletions
diff --git a/test/all.test b/test/all.test index ec85847aa..3de46fba2 100644 --- a/test/all.test +++ b/test/all.test @@ -1,28 +1,16 @@ -# Copyright (c) 1999, 2000 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file runs all tests. # -# $Id: all.test,v 1.9 2001/09/14 16:42:13 drh Exp $ +# $Id: all.test,v 1.10 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl @@ -41,11 +29,16 @@ if {[file exists ./sqlite_test_count]} { # set LeakList {} +set EXCLUDE { + all.test + quick.test + malloc.test +} for {set Counter 0} {$Counter<$COUNT && $nErr==0} {incr Counter} { foreach testfile [lsort -dictionary [glob $testdir/*.test]] { - if {[file tail $testfile]=="all.test"} continue - if {[file tail $testfile]=="malloc.test"} continue + set tail [file tail $testfile] + if {[lsearch -exact $EXCLUDE $tail]>=0} continue source $testfile } if {[info exists Leak]} { diff --git a/test/btree.test b/test/btree.test index 9cc8cb1b4..8ba55a403 100644 --- a/test/btree.test +++ b/test/btree.test @@ -1,29 +1,17 @@ -# Copyright (c) 1999, 2000 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this script is btree database backend # -# $Id: btree.test,v 1.8 2001/08/20 00:33:58 drh Exp $ +# $Id: btree.test,v 1.9 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] diff --git a/test/btree2.test b/test/btree2.test index 142c9e7a2..7b594caf8 100644 --- a/test/btree2.test +++ b/test/btree2.test @@ -1,29 +1,17 @@ -# Copyright (c) 1999, 2000 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this script is btree database backend # -# $Id: btree2.test,v 1.6 2001/09/14 16:42:13 drh Exp $ +# $Id: btree2.test,v 1.7 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] @@ -288,8 +276,8 @@ foreach {N L} { 10 2 50 2 200 3 + 2000 5 } { - # 2000 5 puts "**** N=$N L=$L ****" set hash [md5file test2.bt] do_test btree2-$testno.1 [subst -nocommands { diff --git a/test/copy.test b/test/copy.test index e7e415707..eab3644d3 100644 --- a/test/copy.test +++ b/test/copy.test @@ -1,29 +1,17 @@ -# Copyright (c) 1999, 2000 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this file is testing the COPY statement. # -# $Id: copy.test,v 1.5 2000/06/07 01:27:49 drh Exp $ +# $Id: copy.test,v 1.6 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl diff --git a/test/delete.test b/test/delete.test index 4587fbf9f..6ab2d3fec 100644 --- a/test/delete.test +++ b/test/delete.test @@ -1,29 +1,17 @@ -# Copyright (c) 1999, 2000 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this file is testing the DELETE FROM statement. # -# $Id: delete.test,v 1.8 2001/03/20 22:05:00 drh Exp $ +# $Id: delete.test,v 1.9 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl diff --git a/test/expr.test b/test/expr.test index 3e8c8166f..bc30a660a 100644 --- a/test/expr.test +++ b/test/expr.test @@ -1,29 +1,17 @@ -# Copyright (c) 1999, 2000 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this file is testing expressions. # -# $Id: expr.test,v 1.14 2001/04/28 16:52:42 drh Exp $ +# $Id: expr.test,v 1.15 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl diff --git a/test/func.test b/test/func.test index a6d8ed26c..f83b3697c 100644 --- a/test/func.test +++ b/test/func.test @@ -1,29 +1,17 @@ -# Copyright (c) 1999, 2000 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this file is testing built-in functions. # -# $Id: func.test,v 1.3 2001/04/06 16:13:43 drh Exp $ +# $Id: func.test,v 1.4 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl diff --git a/test/in.test b/test/in.test index a4bdd8b9d..e8c9417f6 100644 --- a/test/in.test +++ b/test/in.test @@ -1,29 +1,17 @@ -# Copyright (c) 1999, 2000 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this file is testing the IN and BETWEEN operator. # -# $Id: in.test,v 1.4 2001/04/04 11:48:58 drh Exp $ +# $Id: in.test,v 1.5 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl diff --git a/test/index.test b/test/index.test index 2d6dc4700..1da441297 100644 --- a/test/index.test +++ b/test/index.test @@ -1,29 +1,17 @@ -# Copyright (c) 1999, 2000 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this file is testing the CREATE INDEX statement. # -# $Id: index.test,v 1.11 2001/09/13 21:53:10 drh Exp $ +# $Id: index.test,v 1.12 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl diff --git a/test/insert.test b/test/insert.test index 5eb473299..875476907 100644 --- a/test/insert.test +++ b/test/insert.test @@ -1,29 +1,17 @@ -# Copyright (c) 1999, 2000 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this file is testing the INSERT statement. # -# $Id: insert.test,v 1.5 2001/04/04 11:48:58 drh Exp $ +# $Id: insert.test,v 1.6 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl diff --git a/test/insert2.test b/test/insert2.test index 5c5d95c8d..59fb2e76e 100644 --- a/test/insert2.test +++ b/test/insert2.test @@ -1,30 +1,18 @@ -# Copyright (c) 1999, 2000 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this file is testing the INSERT statement that takes is # result from a SELECT. # -# $Id: insert2.test,v 1.3 2001/09/14 03:24:25 drh Exp $ +# $Id: insert2.test,v 1.4 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl diff --git a/test/lock.test b/test/lock.test index 6283dd171..c6eaf0bf8 100644 --- a/test/lock.test +++ b/test/lock.test @@ -1,29 +1,17 @@ -# Copyright (c) 1999, 2000 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this script is database locks. # -# $Id: lock.test,v 1.9 2001/09/14 03:24:25 drh Exp $ +# $Id: lock.test,v 1.10 2001/09/16 00:13:28 drh Exp $ if {0} { diff --git a/test/main.test b/test/main.test index 09a60db93..5dbcf5921 100644 --- a/test/main.test +++ b/test/main.test @@ -1,29 +1,17 @@ -# Copyright (c) 1999, 2000 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this file is exercising the code in main.c. # -# $Id: main.test,v 1.7 2001/09/14 03:24:25 drh Exp $ +# $Id: main.test,v 1.8 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl diff --git a/test/malloc.test b/test/malloc.test index f8c66995d..bc008e0b7 100644 --- a/test/malloc.test +++ b/test/malloc.test @@ -1,23 +1,11 @@ -# Copyright (c) 2001 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file attempts to check the library in an out-of-memory situation. @@ -26,7 +14,7 @@ # special feature is used to see what happens in the library if a malloc # were to really fail due to an out-of-memory situation. # -# $Id: malloc.test,v 1.2 2001/04/12 23:21:59 drh Exp $ +# $Id: malloc.test,v 1.3 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl diff --git a/test/pager.test b/test/pager.test index 53ce9e9b8..a39806f3a 100644 --- a/test/pager.test +++ b/test/pager.test @@ -1,29 +1,17 @@ -# Copyright (c) 1999, 2000 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this script is page cache subsystem. # -# $Id: pager.test,v 1.9 2001/09/14 03:24:25 drh Exp $ +# $Id: pager.test,v 1.10 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] diff --git a/test/printf.test b/test/printf.test index 7941ab4c3..98244c95b 100644 --- a/test/printf.test +++ b/test/printf.test @@ -1,29 +1,17 @@ -# Copyright (c) 2001 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this file is testing the sqlite_*_printf() interface. # -# $Id: printf.test,v 1.2 2001/04/11 14:28:43 drh Exp $ +# $Id: printf.test,v 1.3 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl diff --git a/test/quick.test b/test/quick.test new file mode 100644 index 000000000..904b5ede5 --- /dev/null +++ b/test/quick.test @@ -0,0 +1,32 @@ +# 2001 September 15 +# +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: +# +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. +# +#*********************************************************************** +# This file runs all tests. +# +# $Id: quick.test,v 1.1 2001/09/16 00:13:28 drh Exp $ + +set testdir [file dirname $argv0] +source $testdir/tester.tcl +rename finish_test really_finish_test +proc finish_test {} {} + +set EXCLUDE { + all.test + quick.test + btree2.test +} + +foreach testfile [lsort -dictionary [glob $testdir/*.test]] { + set tail [file tail $testfile] + if {[lsearch -exact $EXCLUDE $tail]>=0} continue + source $testfile +} + +really_finish_test diff --git a/test/quote.test b/test/quote.test index 98036c519..fa635debd 100644 --- a/test/quote.test +++ b/test/quote.test @@ -1,30 +1,18 @@ -# Copyright (c) 2001 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this file is the ability to specify table and column names # as quoted strings. # -# $Id: quote.test,v 1.1 2001/07/23 14:33:04 drh Exp $ +# $Id: quote.test,v 1.2 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl diff --git a/test/rowid.test b/test/rowid.test index 3c5df631e..b835f026f 100644 --- a/test/rowid.test +++ b/test/rowid.test @@ -1,30 +1,18 @@ -# Copyright (c) 1999, 2000 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this file is testing the magic ROWID column that is # found on all tables. # -# $Id: rowid.test,v 1.3 2001/09/15 00:58:01 drh Exp $ +# $Id: rowid.test,v 1.4 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl diff --git a/test/select1.test b/test/select1.test index e8d982f03..08aa84e38 100644 --- a/test/select1.test +++ b/test/select1.test @@ -1,29 +1,17 @@ -# Copyright (c) 1999, 2000 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this file is testing the SELECT statement. # -# $Id: select1.test,v 1.9 2001/04/12 23:21:59 drh Exp $ +# $Id: select1.test,v 1.10 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl diff --git a/test/select2.test b/test/select2.test index cf79177fe..ccce1a4c2 100644 --- a/test/select2.test +++ b/test/select2.test @@ -1,29 +1,17 @@ -# Copyright (c) 1999, 2000 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this file is testing the SELECT statement. # -# $Id: select2.test,v 1.13 2001/09/14 03:24:25 drh Exp $ +# $Id: select2.test,v 1.14 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl diff --git a/test/select3.test b/test/select3.test index f77eae4b4..7052c392c 100644 --- a/test/select3.test +++ b/test/select3.test @@ -1,30 +1,18 @@ -# Copyright (c) 1999, 2000 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this file is testing aggregate functions and the # GROUP BY and HAVING clauses of SELECT statements. # -# $Id: select3.test,v 1.2 2000/06/08 15:10:48 drh Exp $ +# $Id: select3.test,v 1.3 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl diff --git a/test/select4.test b/test/select4.test index c90bf7c31..648de04d0 100644 --- a/test/select4.test +++ b/test/select4.test @@ -1,30 +1,18 @@ -# Copyright (c) 1999, 2000 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this file is testing UNION, INTERSECT and EXCEPT operators # in SELECT statements. # -# $Id: select4.test,v 1.3 2000/06/08 15:10:48 drh Exp $ +# $Id: select4.test,v 1.4 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl diff --git a/test/select5.test b/test/select5.test index 816e88da8..729268d2b 100644 --- a/test/select5.test +++ b/test/select5.test @@ -1,30 +1,18 @@ -# Copyright (c) 1999, 2000 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this file is testing aggregate functions and the # GROUP BY and HAVING clauses of SELECT statements. # -# $Id: select5.test,v 1.4 2000/06/21 13:59:13 drh Exp $ +# $Id: select5.test,v 1.5 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl diff --git a/test/sort.test b/test/sort.test index bb7d1e8b9..4a9939ee4 100644 --- a/test/sort.test +++ b/test/sort.test @@ -1,29 +1,17 @@ -# Copyright (c) 1999, 2000 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this file is testing the CREATE TABLE statement. # -# $Id: sort.test,v 1.2 2001/04/04 11:48:58 drh Exp $ +# $Id: sort.test,v 1.3 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl diff --git a/test/subselect.test b/test/subselect.test index 5a436cd57..e2f2559f5 100644 --- a/test/subselect.test +++ b/test/subselect.test @@ -1,30 +1,18 @@ -# Copyright (c) 1999, 2000 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this file is testing SELECT statements that are part of # expressions. # -# $Id: subselect.test,v 1.3 2000/06/05 21:39:49 drh Exp $ +# $Id: subselect.test,v 1.4 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl diff --git a/test/table.test b/test/table.test index 151f122ed..5e06e64b7 100644 --- a/test/table.test +++ b/test/table.test @@ -1,29 +1,17 @@ -# Copyright (c) 1999, 2000 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this file is testing the CREATE TABLE statement. # -# $Id: table.test,v 1.11 2001/09/14 03:24:25 drh Exp $ +# $Id: table.test,v 1.12 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl diff --git a/test/tableapi.test b/test/tableapi.test index 5cb6a7973..1cc873f4f 100644 --- a/test/tableapi.test +++ b/test/tableapi.test @@ -1,30 +1,18 @@ -# Copyright (c) 2001 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this file is testing the sqlite_exec_printf() and # sqlite_get_table_printf() APIs. # -# $Id: tableapi.test,v 1.2 2001/04/11 14:28:43 drh Exp $ +# $Id: tableapi.test,v 1.3 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl diff --git a/test/tclsqlite.test b/test/tclsqlite.test index fd1f37af0..ea79886b8 100644 --- a/test/tclsqlite.test +++ b/test/tclsqlite.test @@ -1,23 +1,11 @@ -# Copyright (c) 1999, 2000 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for TCL interface to the @@ -27,7 +15,7 @@ # interface is pretty well tested. This file contains some addition # tests for fringe issues that the main test suite does not cover. # -# $Id: tclsqlite.test,v 1.1 2001/04/03 16:53:22 drh Exp $ +# $Id: tclsqlite.test,v 1.2 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl diff --git a/test/tester.tcl b/test/tester.tcl index 852a1a8ee..549645857 100644 --- a/test/tester.tcl +++ b/test/tester.tcl @@ -1,29 +1,17 @@ -# Copyright (c) 1999, 2000 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file implements some common TCL routines used for regression # testing the SQLite library # -# $Id: tester.tcl,v 1.17 2001/09/14 16:42:13 drh Exp $ +# $Id: tester.tcl,v 1.18 2001/09/16 00:13:28 drh Exp $ # Make sure tclsqlite was compiled correctly. Abort now with an # error message if not. diff --git a/test/trans.test b/test/trans.test index 0a4b03139..2947a47b0 100644 --- a/test/trans.test +++ b/test/trans.test @@ -1,29 +1,17 @@ -# Copyright (c) 1999, 2000 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this script is database locks. # -# $Id: trans.test,v 1.3 2001/09/14 03:24:25 drh Exp $ +# $Id: trans.test,v 1.4 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] diff --git a/test/update.test b/test/update.test index ca6878864..c389d20fb 100644 --- a/test/update.test +++ b/test/update.test @@ -1,29 +1,17 @@ -# Copyright (c) 1999, 2000 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this file is testing the UPDATE statement. # -# $Id: update.test,v 1.5 2001/02/19 18:24:22 drh Exp $ +# $Id: update.test,v 1.6 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl diff --git a/test/vacuum.test b/test/vacuum.test index 1540f1ab0..6cc8838ba 100644 --- a/test/vacuum.test +++ b/test/vacuum.test @@ -1,29 +1,17 @@ -# Copyright (c) 1999, 2000 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this file is testing the VACUUM statement. # -# $Id: vacuum.test,v 1.5 2001/09/14 03:24:25 drh Exp $ +# $Id: vacuum.test,v 1.6 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl diff --git a/test/where.test b/test/where.test index 33e7a664e..5e9776d41 100644 --- a/test/where.test +++ b/test/where.test @@ -1,29 +1,17 @@ -# Copyright (c) 1999, 2000 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this file is testing the use of indices in WHERE clases. # -# $Id: where.test,v 1.2 2001/08/19 18:19:46 drh Exp $ +# $Id: where.test,v 1.3 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl |