Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Prevent backcompat.test from mistaking directories for binary executables. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
717a1e50f005714b1d5233f80697db14 |
User & Date: | dan 2010-10-05 08:13:44.000 |
Context
2010-10-05
| ||
11:33 | Fix an assert() failing on OSX. (check-in: dca8763872 user: dan tags: trunk) | |
08:13 | Prevent backcompat.test from mistaking directories for binary executables. (check-in: 717a1e50f0 user: dan tags: trunk) | |
2010-10-04
| ||
23:55 | Fix a performance regression (relative to version 3.6.23.1) caused by the query planner taking into account non-indexable WHERE clause terms to select the outermost join loops when it should be selecting tables for the outermost loop that do not benefit from being in an inner loop. (check-in: ece641eb89 user: drh tags: trunk) | |
Changes
Changes to test/backcompat.test.
︙ | ︙ | |||
35 36 37 38 39 40 41 | # set binaries [list] set pattern "[file tail [info nameofexec]]?*" if {$tcl_platform(platform)=="windows"} { set pattern [string map {\.exe {}} $pattern] } foreach file [glob -nocomplain $pattern] { | | | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | # set binaries [list] set pattern "[file tail [info nameofexec]]?*" if {$tcl_platform(platform)=="windows"} { set pattern [string map {\.exe {}} $pattern] } foreach file [glob -nocomplain $pattern] { if {[file executable $file] && [file isfile $file]} {lappend binaries $file} } if {[llength $binaries]==0} { puts "WARNING: No historical binaries to test against." puts "WARNING: No backwards-compatibility tests have been run." finish_test return } |
︙ | ︙ |