]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix an incorrect testcase for the round() function. All tests are passing
authordrh <drh@noemail.net>
Tue, 19 Jun 2012 03:59:30 +0000 (03:59 +0000)
committerdrh <drh@noemail.net>
Tue, 19 Jun 2012 03:59:30 +0000 (03:59 +0000)
now, including new real->text->real round-trip tests.

FossilOrigin-Name: 963eb24f737f184d5fcdcd92ebf90466f818cfd8

manifest
manifest.uuid
test/func.test

index f2fa197301da6e0c88f44671de41ac3c7e4492a7..476505fb32072a6873393b109905e969bb52e1ad 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Round-trip\sconversions\sof\sreal->text->real\sare\snow\slossless\son\sx64\swith\sGCC.\nUntested\son\sother\splatforms\sso\sfar.\s\sStill\sa\scorner-case\sproblem\swith\sround().
-D 2012-06-19T03:35:05.368
+C Fix\san\sincorrect\stestcase\sfor\sthe\sround()\sfunction.\s\sAll\stests\sare\spassing\nnow,\sincluding\snew\sreal->text->real\sround-trip\stests.
+D 2012-06-19T03:59:30.382
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in d17fddaa4e81f93a7c9c7c0808aacb3fc95f79f4
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -503,7 +503,7 @@ F test/fts4merge.test c424309743fdd203f8e56a1f1cd7872cd66cc0ee
 F test/fts4merge2.test 5faa558d1b672f82b847d2a337465fa745e46891
 F test/fts4merge3.test aab02a09f50fe6baaddc2e159c3eabc116d45fc7
 F test/fts4unicode.test 247e6c64563b5f930aec0f89a5b01ed6b4b129cd
-F test/func.test 9809b7622d721904a8cc33c1ffb87f46d506ed01
+F test/func.test 0d89043dab9a8853358d14c68e028ee0093bf066
 F test/func2.test 772d66227e4e6684b86053302e2d74a2500e1e0f
 F test/func3.test 001021e5b88bd02a3b365a5c5fd8f6f49d39744a
 F test/fuzz-oss1.test 4912e528ec9cf2f42134456933659d371c9e0d74
@@ -1006,7 +1006,7 @@ F tool/tostr.awk e75472c2f98dd76e06b8c9c1367f4ab07e122d06
 F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f
 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
 F tool/warnings.sh fbc018d67fd7395f440c28f33ef0f94420226381
-P 8ecffca900cd6a8922001fd458a266ce8c83fb66
-R 4b19672a1a06e137614a87d3123c24fd
+P fd7bd4a59361be41b10522abc212cf56fb5e35b4
+R c0c29fe1d0e93cd15c8e76222be12539
 U drh
-Z 1cc55456093d3d8044d88cb7bcd1bdba
+Z 5bd3e2acf922536517e034479b86dc68
index 703abfa72b8bb8fa92841f58f646a639e835e5a6..eb04d6c81f31503b37feb7faeaedc9b0f6bb7f7e 100644 (file)
@@ -1 +1 @@
-fd7bd4a59361be41b10522abc212cf56fb5e35b4
\ No newline at end of file
+963eb24f737f184d5fcdcd92ebf90466f818cfd8
\ No newline at end of file
index ba1ea026d73613055996b315e21ee56403cf7d76..e44c44b2805dc8de6a3167a16dee536a2276bf13 100644 (file)
@@ -312,7 +312,7 @@ ifcapable floatingpoint {
     execsql {SELECT round(9999999999999.55,1);}
   } {9999999999999.6}
   do_test func-4.38 {
-    execsql {SELECT round(9999999999999.555,2);}
+    execsql {SELECT round(9999999999999.556,2);}
   } {9999999999999.56}
 }