diff options
author | drh <> | 2024-07-31 22:36:14 +0000 |
---|---|---|
committer | drh <> | 2024-07-31 22:36:14 +0000 |
commit | a1291e79d3d0c8b6aa40b455151b988a92879e17 (patch) | |
tree | 7eca588d2e68bb910d8e9a7ce3957997309a2f79 /ext/session/changesetfuzz1.test | |
parent | 07f215ad9e3606253d9bc52d59e46a9c7d9a1b63 (diff) | |
parent | b030bc698088aef9789763123de0f6dcd374cba4 (diff) | |
download | sqlite-a1291e79d3d0c8b6aa40b455151b988a92879e17.tar.gz sqlite-a1291e79d3d0c8b6aa40b455151b988a92879e17.zip |
Fix the tclsqlite.c TCL interface module so that it works with both Tcl8 and
Tcl9. Make changes across the TCL-based test harness to enable SQLite to
be tested with either Tcl8 or Tcl9. Get the --with-tcl= argument on the
configure script working. Testing changes only - no changes to the SQLite core.
I believe the previous merge attempt didn't work because of errors in the
merge itself, not because of faults in the code. Trying again...
FossilOrigin-Name: ea9d88f9ca3399bca83bf03893689a927b73e481604b94527e42de43f103eb46
Diffstat (limited to 'ext/session/changesetfuzz1.test')
-rw-r--r-- | ext/session/changesetfuzz1.test | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/session/changesetfuzz1.test b/ext/session/changesetfuzz1.test index 20f5ac6de..d77fd53b9 100644 --- a/ext/session/changesetfuzz1.test +++ b/ext/session/changesetfuzz1.test @@ -27,7 +27,7 @@ if {$CF==""} { proc writefile {zFile data} { set fd [open $zFile w] - fconfigure $fd -translation binary -encoding binary + fconfigure $fd -translation binary puts -nonewline $fd $data close $fd } @@ -81,4 +81,3 @@ do_test 1.2 { finish_test - |