Progress toward getting SQLITE_OMIT_FLOATING_POINT to pass all tests.

Ticket #1621 (CVS 3012)

FossilOrigin-Name: c4c90965c98c591f601cd69c70351c20ba37218a
This commit is contained in:
drh
2006-01-23 21:37:32 +00:00
parent a86a5b6c7e
commit 1b91c729b5
4 changed files with 20 additions and 10 deletions
+6 -1
View File
@@ -12,7 +12,7 @@
# file is a copy of "trans.test" modified to run under autovacuum mode.
# the point is to stress the autovacuum logic and try to get it to fail.
#
# $Id: avtrans.test,v 1.2 2006/01/17 09:35:02 danielk1977 Exp $
# $Id: avtrans.test,v 1.3 2006/01/23 21:37:32 drh Exp $
set testdir [file dirname $argv0]
@@ -662,6 +662,11 @@ do_test avtrans-6.39 {
} {1 -2 -3 4 -5 -6}
integrity_check avtrans-6.40
ifcapable !floatingpoint {
finish_test
return
}
# Test to make sure rollback restores the database back to its original
# state.
#
+6 -1
View File
@@ -11,7 +11,7 @@
# This file implements regression tests for SQLite library. The
# focus of this script testing the callback-free C/C++ API.
#
# $Id: capi3.test,v 1.39 2006/01/17 09:35:02 danielk1977 Exp $
# $Id: capi3.test,v 1.40 2006/01/23 21:37:32 drh Exp $
#
set testdir [file dirname $argv0]
@@ -432,6 +432,11 @@ do_test $test.13 {
}
ifcapable !floatingpoint {
finish_test
return
}
do_test capi3-5.0 {
execsql {
CREATE TABLE t1(a VARINT, b BLOB, c VARCHAR(16));