mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-08 14:02:16 +03:00
Exclude all WAL tests from the journaltest permutation.
FossilOrigin-Name: 46c97d7eee9359cd21139a6520633f5d16594ab0
This commit is contained in:
24
manifest
24
manifest
@@ -1,5 +1,8 @@
|
|||||||
C Changes\sto\ssupport\sSQLITE_OMIT_WAL.
|
-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
D 2010-05-06T19:20:30
|
Hash: SHA1
|
||||||
|
|
||||||
|
C Exclude\sall\sWAL\stests\sfrom\sthe\sjournaltest\spermutation.
|
||||||
|
D 2010-05-06T19:55:57
|
||||||
F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
|
F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
|
||||||
F Makefile.in a5cad1f8f3e021356bfcc6c77dc16f6f1952bbc3
|
F Makefile.in a5cad1f8f3e021356bfcc6c77dc16f6f1952bbc3
|
||||||
F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
|
F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
|
||||||
@@ -535,7 +538,7 @@ F test/pageropt.test 3ee6578891baaca967f0bd349e4abfa736229e1a
|
|||||||
F test/pagesize.test 76aa9f23ecb0741a4ed9d2e16c5fa82671f28efb
|
F test/pagesize.test 76aa9f23ecb0741a4ed9d2e16c5fa82671f28efb
|
||||||
F test/pcache.test eebc4420b37cb07733ae9b6e99c9da7c40dd6d58
|
F test/pcache.test eebc4420b37cb07733ae9b6e99c9da7c40dd6d58
|
||||||
F test/pcache2.test 0d85f2ab6963aee28c671d4c71bec038c00a1d16
|
F test/pcache2.test 0d85f2ab6963aee28c671d4c71bec038c00a1d16
|
||||||
F test/permutations.test 7d9064978f0ca90d0ec827a7ada9e8e2615b1143
|
F test/permutations.test d1df46099c47fa18ace721cd63e23c7bb93ca96a
|
||||||
F test/pragma.test 6960f9efbce476f70ba9ee2171daf5042f9e3d8a
|
F test/pragma.test 6960f9efbce476f70ba9ee2171daf5042f9e3d8a
|
||||||
F test/pragma2.test 5364893491b9231dd170e3459bfc2e2342658b47
|
F test/pragma2.test 5364893491b9231dd170e3459bfc2e2342658b47
|
||||||
F test/printf.test 05970cde31b1a9f54bd75af60597be75a5c54fea
|
F test/printf.test 05970cde31b1a9f54bd75af60597be75a5c54fea
|
||||||
@@ -813,7 +816,14 @@ F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
|
|||||||
F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
|
F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
|
||||||
F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
|
F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
|
||||||
F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f
|
F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f
|
||||||
P 9927ce421090ac20285cf05768b38e1f91826a68
|
P 32a8501d78714cc390eba5f993f329ef3b499878
|
||||||
R 51a655cb9dc88fa3eb6126dc4d84f844
|
R 3fadeaa9f525cb7a9f2d679155ce38fe
|
||||||
U shaneh
|
U drh
|
||||||
Z 8f927effc2569ea28cd415a1f63e272b
|
Z c4d16a89fa63b297a45a15f873d36d98
|
||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
Version: GnuPG v1.4.6 (GNU/Linux)
|
||||||
|
|
||||||
|
iD8DBQFL4x7QoxKgR168RlERAq76AJ90687cFDYfeinP9JsMERA+feufKwCfWI/B
|
||||||
|
YD5LnNX4eEEbV7FlK2e9d0g=
|
||||||
|
=2s20
|
||||||
|
-----END PGP SIGNATURE-----
|
||||||
|
@@ -1 +1 @@
|
|||||||
32a8501d78714cc390eba5f993f329ef3b499878
|
46c97d7eee9359cd21139a6520633f5d16594ab0
|
@@ -81,6 +81,10 @@ foreach filename [glob $testdir/*.test] {
|
|||||||
if {[lsearch $EXCLUDE $filename] < 0} { lappend ALLTESTS $filename }
|
if {[lsearch $EXCLUDE $filename] < 0} { lappend ALLTESTS $filename }
|
||||||
}
|
}
|
||||||
set ALLTESTS [lsort $ALLTESTS]
|
set ALLTESTS [lsort $ALLTESTS]
|
||||||
|
set WALTESTS [list]
|
||||||
|
foreach filename $ALLTESTS {
|
||||||
|
if {![regexp {^wal} $filename]} {lappend WALTESTS $filename}
|
||||||
|
}
|
||||||
|
|
||||||
rename finish_test really_finish_test2
|
rename finish_test really_finish_test2
|
||||||
proc finish_test {} {}
|
proc finish_test {} {}
|
||||||
@@ -733,7 +737,7 @@ run_tests "journaltest" -description {
|
|||||||
#sqlite3_instvfs destroy binarylog
|
#sqlite3_instvfs destroy binarylog
|
||||||
unregister_jt_vfs
|
unregister_jt_vfs
|
||||||
} -include [concat $::ALLTESTS savepoint6.test
|
} -include [concat $::ALLTESTS savepoint6.test
|
||||||
] -exclude {
|
] -exclude [concat $::WALTESTS {
|
||||||
incrvacuum.test
|
incrvacuum.test
|
||||||
ioerr.test
|
ioerr.test
|
||||||
corrupt4.test
|
corrupt4.test
|
||||||
@@ -741,7 +745,7 @@ run_tests "journaltest" -description {
|
|||||||
crash8.test
|
crash8.test
|
||||||
async4.test
|
async4.test
|
||||||
bigfile.test
|
bigfile.test
|
||||||
}
|
}]
|
||||||
|
|
||||||
if {[info commands register_demovfs] != ""} {
|
if {[info commands register_demovfs] != ""} {
|
||||||
run_tests "demovfs" -description {
|
run_tests "demovfs" -description {
|
||||||
|
Reference in New Issue
Block a user