Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a recently introduced problem in permutations.test causing an error when the QUICKTEST_OMIT environment variable is defined. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | branch-3.11 |
Files: | files | file ages | folders |
SHA1: |
45bc9557722cc2a1398a53fdb2acd8b6 |
User & Date: | dan 2016-03-02 15:37:50.695 |
Context
2016-03-03
| ||
15:16 | Increase the default upper bound on scope to 30. (check-in: b1258814f6 user: drh tags: branch-3.11) | |
2016-03-02
| ||
15:37 | Fix a recently introduced problem in permutations.test causing an error when the QUICKTEST_OMIT environment variable is defined. (check-in: 45bc955772 user: dan tags: branch-3.11) | |
13:26 | Fix an error in an fts5 test script. (check-in: b2a03e2d47 user: dan tags: branch-3.11) | |
Changes
Changes to test/permutations.test.
︙ | ︙ | |||
81 82 83 84 85 86 87 88 | # Set up the following global list variables containing the names of # various test scripts: # # $alltests # $allquicktests # set alltests [list] foreach f [glob -nocomplain \ | > < | 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | # Set up the following global list variables containing the names of # various test scripts: # # $alltests # $allquicktests # set alltests [list] foreach f [glob $testdir/*.test] { lappend alltests [file tail $f] } foreach f [glob -nocomplain \ $testdir/../ext/rtree/*.test \ $testdir/../ext/fts5/test/*.test \ ] { lappend alltests $f } if {$::tcl_platform(platform)!="unix"} { |
︙ | ︙ |