Index: third_party/sqlite/src/test/filefmt.test |
diff --git a/third_party/sqlite/src/test/filefmt.test b/third_party/sqlite/src/test/filefmt.test |
index 2df142443602e1a8914b191e31f87ffa0d89b256..087a955c39832268cc5db05c2d097e1c726d22a9 100644 |
--- a/third_party/sqlite/src/test/filefmt.test |
+++ b/third_party/sqlite/src/test/filefmt.test |
@@ -144,9 +144,11 @@ do_execsql_test filefmt-2.1.1 { |
CREATE TABLE t2(a); |
INSERT INTO t2 VALUES(1); |
} {} |
-do_test filefmt-2.1.2 { |
- hexio_read test.db 28 4 |
-} {00000009} |
+if {![nonzero_reserved_bytes]} { |
+ do_test filefmt-2.1.2 { |
+ hexio_read test.db 28 4 |
+ } {00000009} |
+} |
do_test filefmt-2.1.3 { |
sql36231 { INSERT INTO t1 VALUES(a_string(3000)) } |
@@ -170,9 +172,11 @@ do_execsql_test filefmt-2.2.1 { |
CREATE TABLE t2(a); |
INSERT INTO t2 VALUES(1); |
} {} |
-do_test filefmt-2.2.2 { |
- hexio_read test.db 28 4 |
-} {00000009} |
+if {![nonzero_reserved_bytes]} { |
+ do_test filefmt-2.2.2 { |
+ hexio_read test.db 28 4 |
+ } {00000009} |
+} |
do_test filefmt-2.2.3 { |
sql36231 { INSERT INTO t1 VALUES(a_string(3000)) } |