diff options
author | danielk1977 <danielk1977@noemail.net> | 2007-10-09 08:29:32 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2007-10-09 08:29:32 +0000 |
commit | 5a8f9374ab9dcba90943efc735ae944d6f24c53c (patch) | |
tree | 6fd7902661f351836a10b130646638c1b1795b80 /test/attach.test | |
parent | 0cd1ea5e44f9d3274bae4cc6622dc08a81a75910 (diff) | |
download | sqlite-5a8f9374ab9dcba90943efc735ae944d6f24c53c.tar.gz sqlite-5a8f9374ab9dcba90943efc735ae944d6f24c53c.zip |
Fixes to the test suite (no code changes) so that quick.test runs with OMIT_ATTACH builds. #2706. (CVS 4480)
FossilOrigin-Name: 07c00fffe50e8380748f7ae02328531a75d64610
Diffstat (limited to 'test/attach.test')
-rw-r--r-- | test/attach.test | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test/attach.test b/test/attach.test index 2fb6d7727..096bb85fa 100644 --- a/test/attach.test +++ b/test/attach.test @@ -12,12 +12,17 @@ # focus of this script is testing the ATTACH and DETACH commands # and related functionality. # -# $Id: attach.test,v 1.46 2007/09/12 17:01:45 danielk1977 Exp $ +# $Id: attach.test,v 1.47 2007/10/09 08:29:32 danielk1977 Exp $ # set testdir [file dirname $argv0] source $testdir/tester.tcl +ifcapable !attach { + finish_test + return +} + for {set i 2} {$i<=15} {incr i} { file delete -force test$i.db file delete -force test$i.db-journal |