Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | In the test suite infrastructure, skip over scanning the release directory if it does not exist. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
82655edf5874bc5a20fe7cb0e831eb67 |
User & Date: | mistachkin 2017-09-07 19:56:54.837 |
Context
2017-09-07
| ||
20:06 | Add GetDecimalAsText connection flag to force Decimal typed columns to be returned as text. Pursuant to [b167206ad3]. check-in: 59d87c8bce user: mistachkin tags: trunk | |
19:56 | In the test suite infrastructure, skip over scanning the release directory if it does not exist. check-in: 82655edf58 user: mistachkin tags: trunk | |
2017-08-16
| ||
01:22 | Update version history docs. check-in: 0cc5991980 user: mistachkin tags: trunk | |
Changes
Changes to lib/System.Data.SQLite/common.eagle.
︙ | ︙ | |||
1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 | return true } else { tputs $channel [appendArgs "yes (" $platform ")\n"] } } else { tputs $channel no\n foreach path [lsort -decreasing [file list $directory *]] { if {[file exists $path] && [file isdirectory $path]} then { tputs $channel [appendArgs \ "---- checking for System.Data.SQLite release \"" \ $path "\"... "] | > > > > > > > > > | 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 | return true } else { tputs $channel [appendArgs "yes (" $platform ")\n"] } } else { tputs $channel no\n if {![file exists $directory] || \ ![file isdirectory $directory]} then { tputs $channel [appendArgs \ "---- environment variable \"System.Data.SQLite\" is an " \ "invalid directory, skipping check for releases...\n"] return false } foreach path [lsort -decreasing [file list $directory *]] { if {[file exists $path] && [file isdirectory $path]} then { tputs $channel [appendArgs \ "---- checking for System.Data.SQLite release \"" \ $path "\"... "] |
︙ | ︙ |