| OLD | NEW |
| 1 # 2008 Sep 08 | 1 # 2008 Sep 08 |
| 2 # | 2 # |
| 3 # The author disclaims copyright to this source code. In place of | 3 # The author disclaims copyright to this source code. In place of |
| 4 # a legal notice, here is a blessing: | 4 # a legal notice, here is a blessing: |
| 5 # | 5 # |
| 6 # May you do good and not evil. | 6 # May you do good and not evil. |
| 7 # May you find forgiveness for yourself and forgive others. | 7 # May you find forgiveness for yourself and forgive others. |
| 8 # May you share freely, never taking more than you give. | 8 # May you share freely, never taking more than you give. |
| 9 # | 9 # |
| 10 #*********************************************************************** | 10 #*********************************************************************** |
| 11 # | 11 # |
| 12 # The focus of this file is testing that ticket #3363 is fixed. | 12 # The focus of this file is testing that ticket #3363 is fixed. |
| 13 # | 13 # |
| 14 # $Id: tkt3363.test,v 1.1 2008/09/08 11:07:03 danielk1977 Exp $ | |
| 15 # | |
| 16 | 14 |
| 17 if {![info exists testdir]} { | 15 if {![info exists testdir]} { |
| 18 set testdir [file join [file dirname $argv0] .. .. test] | 16 set testdir [file join [file dirname [info script]] .. .. test] |
| 19 } | 17 } |
| 20 source [file join [file dirname [info script]] rtree_util.tcl] | 18 source [file join [file dirname [info script]] rtree_util.tcl] |
| 21 source $testdir/tester.tcl | 19 source $testdir/tester.tcl |
| 22 | 20 |
| 23 ifcapable !rtree { | 21 ifcapable !rtree { |
| 24 finish_test | 22 finish_test |
| 25 return | 23 return |
| 26 } | 24 } |
| 27 | 25 |
| 28 do_test tkt3363.1.1 { | 26 do_test tkt3363.1.1 { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 43 } | 41 } |
| 44 } {7} | 42 } {7} |
| 45 | 43 |
| 46 do_test tkt3363.1.4 { | 44 do_test tkt3363.1.4 { |
| 47 execsql { | 45 execsql { |
| 48 SELECT count(*) FROM t1 WHERE y2>4000425.0; | 46 SELECT count(*) FROM t1 WHERE y2>4000425.0; |
| 49 } | 47 } |
| 50 } {7} | 48 } {7} |
| 51 | 49 |
| 52 finish_test | 50 finish_test |
| 53 | |
| 54 | |
| OLD | NEW |