1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-01 06:27:03 +03:00

Skip bigfile.test on Mac OS X. Darwin does not handle large sparse files

efficiently and so this test takes a really long time. (CVS 1779)

FossilOrigin-Name: a3c38a6d286ab37a9cdcc8b2243ea3258cc61ff0
This commit is contained in:
drh
2004-06-30 11:28:13 +00:00
parent 91b48aa1af
commit 3ea64406fc
3 changed files with 12 additions and 8 deletions

View File

@ -12,7 +12,7 @@
# focus of this script testing the ability of SQLite to handle database
# files larger than 4GB.
#
# $Id: bigfile.test,v 1.5 2004/06/19 00:16:31 drh Exp $
# $Id: bigfile.test,v 1.6 2004/06/30 11:28:13 drh Exp $
#
set testdir [file dirname $argv0]
@ -24,6 +24,10 @@ source $testdir/tester.tcl
scan $::tcl_version %f vx
if {$vx<8.4} return
# Mac OS X does not handle large files efficiently. So skip this test
# on that platform.
if {$tcl_platform(os)=="Darwin"} return
# This is the md5 checksum of all the data in table t1 as created
# by the first test. We will use this number to make sure that data
# never changes.