Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Back out an unintended change to permutations.test. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | experimental |
Files: | files | file ages | folders |
SHA1: |
57fe35357dba7ebb382486b916004004 |
User & Date: | drh 2010-11-04 21:14:12 |
Context
2010-11-05
| ||
00:00 | Fix the Makefile.in so that it works with the multiplexer VFS. Closed-Leaf check-in: 54e2efb6 user: drh tags: experimental | |
2010-11-04
| ||
21:14 | Back out an unintended change to permutations.test. check-in: 57fe3535 user: drh tags: experimental | |
21:13 | Another change for testing on Windows. check-in: 2625886b user: shaneh tags: experimental | |
Changes
Changes to test/permutations.test.
767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 |
set ::G(perm:name) $name set ::G(perm:prefix) $options(-prefix) set ::G(perm:presql) $options(-presql) set ::G(isquick) 1 uplevel $options(-initialize) # uncomment stuff here to skip to a particular test set skip_to_file "pagerfault.test" set skip 1 foreach file [lsort $options(-files)] { if {[file tail $file] == $skip_to_file} { set skip 0 } if {$skip == 0} { if {[file tail $file] == $file} { set file [file join $::testdir $file] } slave_test_file $file } } uplevel $options(-shutdown) unset ::G(perm:name) unset ::G(perm:prefix) unset ::G(perm:presql) |
< < < < < | | < |
767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 |
set ::G(perm:name) $name set ::G(perm:prefix) $options(-prefix) set ::G(perm:presql) $options(-presql) set ::G(isquick) 1 uplevel $options(-initialize) foreach file [lsort $options(-files)] { if {[file tail $file] == $file} { set file [file join $::testdir $file] } slave_test_file $file } uplevel $options(-shutdown) unset ::G(perm:name) unset ::G(perm:prefix) unset ::G(perm:presql) |