]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix the name of the source algorithm in the comments of the script generators
authordrh <drh@noemail.net>
Sun, 14 Dec 2008 02:55:16 +0000 (02:55 +0000)
committerdrh <drh@noemail.net>
Sun, 14 Dec 2008 02:55:16 +0000 (02:55 +0000)
for the recently checked-in test cases for integer boundary-value testing. (CVS 6026)

FossilOrigin-Name: adba0f3c01ba2407466d0120c411c398218bdaeb

manifest
manifest.uuid
test/boundary1.tcl
test/boundary2.tcl
test/boundary3.tcl
test/boundary4.tcl

index f9c3fd71c7c20c24f5a2a357b569b11ec0313bae..c2d25ff7b583c0aa6d9d4ffcece9f4c172d6f24f 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Add\smany\snew\sinteger\sboundary\svalue\stests.\s\sTicket\s#3536.\s(CVS\s6025)
-D 2008-12-12T19:19:22
+C Fix\sthe\sname\sof\sthe\ssource\salgorithm\sin\sthe\scomments\sof\sthe\sscript\sgenerators\nfor\sthe\srecently\schecked-in\stest\scases\sfor\sinteger\sboundary-value\stesting.\s(CVS\s6026)
+D 2008-12-14T02:55:16
 F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
 F Makefile.in f7e4c81c347b04f7b0f1c1b081a168645d7b8af7
 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
@@ -235,13 +235,13 @@ F test/bind.test 1134441f1ea47abd1c740090435a6ecbe9ceb263
 F test/bindxfer.test d4f573750e06c34ef2309acb95ad57da1d3c983f
 F test/bitvec.test ecea9aa315f36991e56e326701279b7775cb2bef
 F test/blob.test 2a38d867bdf08f9ce081776acec1ac8d4bca66be
-F test/boundary1.tcl c2994ba15eaae40e7366f87f3e1ca4098f21e41b
+F test/boundary1.tcl 159fe6976fedd7f5cfdd19e6792c54c728b74826
 F test/boundary1.test 7481c191f25082a2a25c9b01ee8d04139177cfc5
-F test/boundary2.tcl c19d4b17c65542af0a6d7717a342cc02f793dbdd
+F test/boundary2.tcl cc609055aa7c9a1ec9299d5e894e97f6793f7b3c
 F test/boundary2.test 49cc59ca36756f59197b52bb6dc1b4c39c13b785
-F test/boundary3.tcl 9563229bdceb62e54139ae1d7b2a1caaf7f78cd0
+F test/boundary3.tcl fd1123e705c93e9423f9ecfd8c81eaab502e4043
 F test/boundary3.test 092bb029aca7aeadd9540833cf6fde09897ca04c
-F test/boundary4.tcl 10ddfa976919d78bb37cb3fd076df26802086970
+F test/boundary4.tcl 66ca93ab8bbca9d75648dcd6c5cfaea1f629cd53
 F test/boundary4.test 6cc878c9f31852b5962b1ed4ecae3726a5ae681c
 F test/busy.test 76b4887f8b9160ba903c1ac22e8ff406ad6ae2f0
 F test/cache.test 3ff445c445742a7b6b9ba6e1d62a25263f9424b9
@@ -672,7 +672,7 @@ F tool/speedtest16.c c8a9c793df96db7e4933f0852abb7a03d48f2e81
 F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
 F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
-P e545490a2828f7f703172dda6d2b9f3342dc134a
-R 3eb6d62182624e9e9717b054edee6df9
+P 45277238d355caa1fbeea67c6c6d1a8f231eabda
+R 4027369295aec877799b668aae8bfd01
 U drh
-Z 72893cf0f7e07ad0497f5c9044dc6440
+Z fc0cb5cead65de3eb9d6b7422c58548e
index 7f3bad201b33a4800964363106ac756d9aad4531..542dfa426f5162770b080844efd197981658e2a7 100644 (file)
@@ -1 +1 @@
-45277238d355caa1fbeea67c6c6d1a8f231eabda
\ No newline at end of file
+adba0f3c01ba2407466d0120c411c398218bdaeb
\ No newline at end of file
index 8285047a4decbadfcc597f3a171e1f245099f8dd..af0e1afc3edd1009e9026e4ce8085ab3453d1915 100644 (file)
@@ -13,7 +13,7 @@ puts {# 2008 December 11
 # This file is automatically generated from a separate TCL script.
 # This file seeks to exercise integer boundary values.
 #
-# $Id: boundary1.tcl,v 1.1 2008/12/12 19:19:22 drh Exp $
+# $Id: boundary1.tcl,v 1.2 2008/12/14 02:55:16 drh Exp $
 
 set testdir [file dirname $argv0]
 source $testdir/tester.tcl
@@ -65,7 +65,7 @@ proc scramble {inlist} {
   return $outlist
 }
 
-# A simple magnitude source.  Not trying to be efficient.
+# A simple selection sort.  Not trying to be efficient.
 #
 proc sort {inlist} {
   set outlist {}
index dae1475c03cf5888408084c654fe5688ce903c46..326d22d98c9707aedfff08ada2e17c8f6c1c3c59 100644 (file)
@@ -13,7 +13,7 @@ puts {# 2008 December 11
 # This file is automatically generated from a separate TCL script.
 # This file seeks to exercise integer boundary values.
 #
-# $Id: boundary2.tcl,v 1.1 2008/12/12 19:19:22 drh Exp $
+# $Id: boundary2.tcl,v 1.2 2008/12/14 02:55:16 drh Exp $
 
 set testdir [file dirname $argv0]
 source $testdir/tester.tcl
@@ -65,7 +65,7 @@ proc scramble {inlist} {
   return $outlist
 }
 
-# A simple magnitude source.  Not trying to be efficient.
+# A simple selection sort.  Not trying to be efficient.
 #
 proc sort {inlist} {
   set outlist {}
index 830a96d6fea6a69506eb0d6a016ff0fb065fcb9a..c5f6470e69364cae6db2a780e9e44b29bbca5097 100644 (file)
@@ -13,7 +13,7 @@ puts {# 2008 December 11
 # This file is automatically generated from a separate TCL script.
 # This file seeks to exercise integer boundary values.
 #
-# $Id: boundary3.tcl,v 1.1 2008/12/12 19:19:22 drh Exp $
+# $Id: boundary3.tcl,v 1.2 2008/12/14 02:55:16 drh Exp $
 
 set testdir [file dirname $argv0]
 source $testdir/tester.tcl
@@ -65,7 +65,7 @@ proc scramble {inlist} {
   return $outlist
 }
 
-# A simple magnitude source.  Not trying to be efficient.
+# A simple selection sort.  Not trying to be efficient.
 #
 proc sort {inlist} {
   set outlist {}
index 1ab7d049ac999f563e45c7e9c8daa07e29851438..df528e55fa7ee53e6b65f756d699527930188faa 100644 (file)
@@ -13,7 +13,7 @@ puts {# 2008 December 11
 # This file is automatically generated from a separate TCL script.
 # This file seeks to exercise integer boundary values.
 #
-# $Id: boundary4.tcl,v 1.1 2008/12/12 19:19:22 drh Exp $
+# $Id: boundary4.tcl,v 1.2 2008/12/14 02:55:16 drh Exp $
 
 set testdir [file dirname $argv0]
 source $testdir/tester.tcl
@@ -63,7 +63,7 @@ proc scramble {inlist} {
   return $outlist
 }
 
-# A simple magnitude source.  Not trying to be efficient.
+# A simple selection sort.  Not trying to be efficient.
 #
 proc sort {inlist} {
   set outlist {}