Omit an unnecessary test case from corruptN.test that does not work with the

new RFC-7539 PRNG.

FossilOrigin-Name: d9e8c65ed25c4f6222c737f4244d5362dbe433d357f7d133765157446cf4e925
This commit is contained in:
drh 2022-08-16 14:09:51 +00:00
parent 9113c87ef3
commit 0f201fccc0
3 changed files with 16 additions and 16 deletions

View File

@ -1,5 +1,5 @@
C Replace\sthe\sRC4-based\sPRNG\swith\sone\sbased\son\sChaCha20.\s\s3x\sfaster.
D 2022-08-16T00:04:40.434
C Omit\san\sunnecessary\stest\scase\sfrom\scorruptN.test\sthat\sdoes\snot\swork\swith\sthe\nnew\sRFC-7539\sPRNG.
D 2022-08-16T14:09:51.629
F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1
F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea
F LICENSE.md df5091916dbb40e6e9686186587125e1b2ff51f022cc334e886c19a0e9982724
@ -854,7 +854,7 @@ F test/corruptJ.test 4d5ccc4bf959464229a836d60142831ef76a5aa4
F test/corruptK.test 5b4212fe346699831c5ad559a62c54e11c0611bdde1ea8423a091f9c01aa32af
F test/corruptL.test ecce40d7b9b909a670a42a45d86e30d927735d7e7f09041af438b19529d35532
F test/corruptM.test 7d574320e08c1b36caa3e47262061f186367d593a7e305d35f15289cc2c3e067
F test/corruptN.test 60b5a62944b4f0029ba07edaa5fd8e670539d6b0a8d99db26c068d435675cbfe
F test/corruptN.test 7c099d153a554001b4fb829c799b01f2ea6276cbc32479131e0db0da4efd9cc4
F test/cost.test b11cdbf9f11ffe8ef99c9881bf390e61fe92baf2182bad1dbe6de59a7295c576
F test/count.test cd4bd531066e8d77ef8fe1e3fc8253d042072e117ccab214b290cf83f1602249
F test/countofview.test e17d6e6688cf74f22783c9ec6e788c0790ee4fbbaee713affd00b1ac0bb39b86
@ -1999,11 +1999,8 @@ F vsixtest/vsixtest.tcl 6a9a6ab600c25a91a7acc6293828957a386a8a93
F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc
F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e
F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0
P c271096736889530f392ff37e631a77f3bc9c46b290dbda245fa05249f4410fc
R 169c772b3aaee1590ba8a07f447292d5
T *branch * chacha20-prng
T *sym-chacha20-prng *
T -sym-trunk *
P 084d8776fa95c75440530028171c56547a341c9a952ba2f29bb533b538603c78
R 4a1be98000c410a528d0befc32c8b6da
U drh
Z 1e027b4a09350d19e88468e502211941
Z af7ba7ff2c1330aa966ddca9675bb3a2
# Remove this line to create a well-formed Fossil manifest.

View File

@ -1 +1 @@
084d8776fa95c75440530028171c56547a341c9a952ba2f29bb533b538603c78
d9e8c65ed25c4f6222c737f4244d5362dbe433d357f7d133765157446cf4e925

View File

@ -141,12 +141,15 @@ do_test 2.0 {
| end c-b92b.txt.db
}]} {}
prng_seed 0 db
do_catchsql_test 2.1 {
SELECT count(*) FROM sqlite_schema;
WITH RECURSIVE c(x) AS (VALUES(1) UNION ALL SELECT x+1 FROM c WHERE x<1000)
INSERT INTO t1(a) SELECT randomblob(null) FROM c;
} {1 {database disk image is malformed}}
# This test only works with the legacy RC4 PRNG
if 0 {
prng_seed 0 db
do_catchsql_test 2.1 {
SELECT count(*) FROM sqlite_schema;
WITH RECURSIVE c(x) AS (VALUES(1) UNION ALL SELECT x+1 FROM c WHERE x<1000)
INSERT INTO t1(a) SELECT randomblob(null) FROM c;
} {1 {database disk image is malformed}}
}
reset_db
if {![info exists ::G(perm:presql)]} {