of the TCL libraries and the SQLite TCL Extensions.
</ol>
-### 2.2 Building the TCL libraries and tclsh executables
+### 2.2 Testing TCL 8.6 on unix
<ol type="1">
-<li value="5"> `mkdir $TCLTD $TCLTD/tcl86 $TCLTD/tcl90`
+<li value="5"> `mkdir $TCLTD/tcl86`
<li> `cd $TCLCO/unix`
<li> `fossil up core-8-6-16` <br>
↑ Or some other version of Tcl8.6.
<li> `fossil clean -x`
<li> `./configure --prefix=$TCLTD/tcl86`
<li> `make install`
+<li> `cd $SRCCO`
+<li> `fossil clean -x`
+<li> `./configure --with-tclsh=$TCLTD/tcl86/bin/tclsh8.6`
+<li> `make tclextension-install` <br>
+ ↑ Verify extension installed at $TCLTD/tcl86/lib/tcl8.6/sqlite3.*
+<li> `makek tclextension-list` <br>
+ ↑ Verify TCL extension correctly installed.
+<li> `make tclextension-verify` <br>
+ ↑ Verify that the correct version is installed.
+<li> `$TCLTD/tcl86/bin/tclsh8.6 test/testrunner.tcl release --explain` <br>
+ ↑ Verify thousands of lines of output with no errors. Or
+ consider running "devtest" without --explain instead of "release".
+</ol>
+
+### 2.3 Testing TCL 9.0 on unix
+
+<ol>
+<li value="18"> `mkdir $TCLTD/tcl90`
<li> `fossil up core-9-0-0` <br>
↑ Or some other version of Tcl9
<li> `fossil clean -x`
<li> `./configure --prefix=$TCLTD/tcl90`
<li> `make install`
-</ol>
-
-### 2.3 Building the SQLite TCL extension
-
-<ol type="1">
-<li value="15"> `cd $SRCCO`
-<li> `fossil clean -x`
-<li> `./configure --with-tclsh=$TCLTD/tcl86/bin/tclsh8.6`
-<li> `make tclextension-install` <br>
- ↑ Verify extension installed at $TCLTD/tcl86/lib/tcl8.6/sqlite3.*
-<li> `make tclextension-verify`
+<li> `cd $SRCCO`
<li> `fossil clean -x`
<li> `./configure --with-tclsh=$TCLTD/tcl90/bin/tclsh9.0`
<li> `make tclextension-install` <br>
↑ Verify extension installed at $TCLTD/tcl90/lib/sqlite3.*
+<li> `makek tclextension-list` <br>
+ ↑ Verify TCL extension correctly installed.
<li> `make tclextension-verify`
-</ol>
-
-### 2.4 Additional sanity tests
-
-<ol type="1">
-<li value="24">
- `$TCLTD/tcl86/bin/tclsh8.6 test/testrunner.tcl release --explain` <br>
- ↑ Verify thousands of lines of output with no errors
<li> `$TCLTD/tcl90/bin/tclsh9.0 test/testrunner.tcl release --explain` <br>
- ↑ Verify thousands of lines of output with no errors
+ ↑ Verify thousands of lines of output with no errors. Or
+ consider running "devtest" without --explain instead of "release".
</ol>
-### 2.5 Cleanup
+### 2.4 Cleanup
<ol type="1">
-<li value="26"> `rm -rf $TCLTD`
+<li value="30"> `rm -rf $TCLTD`
</ol>
## 3.0 Testing On Windows
↑ remember the original %PATH% value
</ol>
-### 3.2 Building the TCL libraries and tclsh.exe executables on Windows
+### 3.2 Testing TCL 8.6 on Windows
<ol type="1">
-<li value="8"> `mkdir %TCLTD% %TCLTD%\tcl86 %TCLTD%\tcl90`
+<li value="8"> `mkdir %TCLTD%\tcl86`
<li> `cd %TCLCO%\win`
<li> `fossil up core-8-6-16` <br>
↑ Or some other version of Tcl8.6.
using separate invocations of "nmake" or tclsh86t.exe won't be
installed.
<li> `nmake /f makefile.vc install`
+<li> `cd %SRCCO%`
+<li> `fossil clean -x`
+<li> `set TCLDIR=%TCLTD%\tcl86`
+<li> `set PATH=%TCLTD%\tcl86\bin;%ORIGINALPATH%`
+<li> `set TCLSH_CMD=%TCLTD%\tcl86\bin\tclsh86t.exe`
+<li> `nmake /f Makefile.msc tclextension-install` <br>
+ ↑ Verify extension installed at %TCLTD%\\tcl86\\lib\\tcl8.6\\sqlite3.*
+<li> `nmake /f Makefile.msc tclextension-verify`
+<li>`tclsh86t test/testrunner.tcl release --explain` <br>
+ ↑ Verify thousands of lines of output with no errors. Or
+ consider running "devtest" without --explain instead of "release".
+</ol>
+
+### 3.3 Testing TCL 9.0 on Windows
+
+<ol>
+<li value="23"> `mkdir %TCLTD%\tcl90`
+<li> `cd %TCLCO%\win`
<li> `fossil up core-9-0-0` <br>
↑ Or some other version of Tcl9
<li> `fossil clean -x`
using separate invocations of "nmake" or tclsh90.exe won't be
installed.
<li> `nmake /f makefile.vc install`
-</ol>
-
-### 3.3 Building the SQLite TCL extension on Windows
-
-<ol type="1">
-<li value="20"> `cd %SRCCO%`
-<li> `fossil clean -x`
-<li> `set TCLDIR=%TCLTD%\tcl86`
-<li> `set PATH=%TCLTD%\tcl86\bin;%ORIGINALPATH%`
-<li> `set TCLSH_CMD=%TCLTD%\tcl86\bin\tclsh86t.exe`
-<li> `nmake /f Makefile.msc tclextension-install` <br>
- ↑ Verify extension installed at %TCLTD%\\tcl86\\lib\\tcl8.6\\sqlite3.*
-<li> `nmake /f Makefile.msc tclextension-verify`
+<li> `cd %SRCCO%`
<li> `fossil clean -x`
<li> `set TCLDIR=%TCLTD%\tcl90`
<li> `set PATH=%TCLTD%\tcl90\bin;%ORIGINALPATH%`
<li> `nmake /f Makefile.msc tclextension-install` <br>
↑ Verify extension installed at %TCLTD%\\tcl90\\lib\\sqlite3.*
<li> `nmake /f Makefile.msc tclextension-verify`
-</ol>
-
-### 3.4 Additional sanity tests for Windows
-
-<ol type="1">
-<li value="33">
- `set PATH=%TCLTD%\tcl86\bin;%ORIGINALPATH%`
-<li>`tclsh86t test/testrunner.tcl release --explain` <br>
- ↑ Verify thousands of lines of output with no errors
-<li> `set PATH=%TCLTD%\tcl90\bin;%ORIGINALPATH%`
<li> `tclsh90 test/testrunner.tcl release --explain` <br>
- ↑ Verify thousands of lines of output with no errors
+ ↑ Verify thousands of lines of output with no errors. Or
+ consider running "devtest" without --explain instead of "release".
</ol>
-### 3.5 Cleanup
+### 3.4 Cleanup
<ol type="1">
-<li value="37"> `rm -rf %TCLTD%`
+<li value="38"> `rm -rf %TCLTD%`
</ol>
-C Fix\stypo\sin\sthe\stcl-extension-testing.md\sdocument.
-D 2025-01-05T11:40:15.277
+C Refactor\sthe\sTCL\sextension\stest\sprocedure\sto\sdeal\swith\sTCL8.6\sand\sTCL9.0\nseparately,\sto\ssimplify\sthe\sprocedures\sand\sreduce\scognative\sstress\son\sthe\ntester.
+D 2025-01-05T17:16:33.231
F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1
F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea
F LICENSE.md e108e1e69ae8e8a59e93c455654b8ac9356a11720d3345df2a4743e9590fb20d
F doc/jsonb.md 5fab4b8613aa9153fbeb6259297bd4697988af8b3d23900deba588fa7841456b
F doc/lemon.html 8b266ff711d2ec7f867c3dca37634963f48a630329908cc282beebfa8c708706
F doc/pager-invariants.txt 27fed9a70ddad2088750c4a2b493b63853da2710
-F doc/tcl-extension-testing.md 97f90ebaac1569c77395f715a4074ddf8b40984d1dae3af7ab693ec256e43853
+F doc/tcl-extension-testing.md 37722ac070d15ed687fbde2c444b97fd1b423b631a89897142f708594aafba47
F doc/testrunner.md 15583cf8c7d8a1c3378fd5d4319ca769a14c4d950a5df9b015d01d5be290dc69
F doc/trusted-schema.md 33625008620e879c7bcfbbfa079587612c434fa094d338b08242288d358c3e8a
F doc/vdbesort-memory.md 4da2639c14cd24a31e0af694b1a8dd37eaf277aff3867e9a8cc14046bc49df56
F tool/warnings-clang.sh bbf6a1e685e534c92ec2bfba5b1745f34fb6f0bc2a362850723a9ee87c1b31a7
F tool/warnings.sh 49a486c5069de041aedcbde4de178293e0463ae9918ecad7539eedf0ec77a139
F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f
-P 3e92fea09af13259d61afd2953fe5f3fc16e3cedfef09e350903aa5299b8e469
-R 62604835e027bab1689bab4a8c0e956a
+P 28150c615cb601dfc9e4f660627228d6a8a715d64c65f7bc77931c9daf8a0dd7
+R 866ce61f7bd1663ef897c7b2791f707c
U drh
-Z adbf7e41d03db62cbc628242472f462e
+Z c10b13ae5e892d2f5ddbaa1f9222567d
# Remove this line to create a well-formed Fossil manifest.