Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Cleanup the databases opened by the test for ticket [8c3bee31c8]. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
0d56186490cb9ffaafbe4f56ea05fc93 |
User & Date: | mistachkin 2012-08-28 21:26:34.146 |
Context
2012-08-29
| ||
11:19 | Make adjustments to allow the release archive verification tool to verify archives built from the latest trunk. check-in: 4909ea3b27 user: mistachkin tags: trunk | |
2012-08-28
| ||
21:26 | Cleanup the databases opened by the test for ticket [8c3bee31c8]. check-in: 0d56186490 user: mistachkin tags: trunk | |
17:50 | Phrasing change for the managed-only NuGet package text. check-in: e71df197ac user: mistachkin tags: trunk | |
Changes
Changes to Tests/common.eagle.
︙ | |||
660 661 662 663 664 665 666 | 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 | - + | # NOTE: Check if the file still exists. # if {!$isMemory && $delete && [file exists $fileName]} then { # # NOTE: Skip deleting database files if somebody sets the global # variable to prevent it. # |
︙ |
Changes to Tests/tkt-8c3bee31c8.eagle.
︙ | |||
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | + + + + + + | } -body { set fileName [appendArgs ' [file join [getDatabaseDirectory] \ tkt-8c3bee31c8-1.2.db] '] set o [object create -alias System.Data.SQLite.SQLiteConnection] $o ConnectionString [appendArgs "Data Source=" $fileName \;] $o Open; # NOTE: This command may throw an exception, failing the test. $o Close } -cleanup { cleanupFile [string trim $fileName '] unset -nocomplain fileName o } -constraints {eagle monoBug28 command.sql compile.DATA SQLite\ System.Data.SQLite} -result {}} ############################################################################### runTest {test tkt-8c3bee31c8-1.3 {open double quoted file name} -setup { unset -nocomplain fileName o } -body { set fileName [appendArgs \" [file join [getDatabaseDirectory] \ tkt-8c3bee31c8-1.3.db] \"] set o [object create -alias System.Data.SQLite.SQLiteConnection] $o ConnectionString [appendArgs "Data Source=" $fileName \;] $o Open; # NOTE: This command may throw an exception, failing the test. $o Close } -cleanup { cleanupFile [string trim $fileName \"] unset -nocomplain fileName o } -constraints {eagle monoBug28 command.sql compile.DATA SQLite\ System.Data.SQLite} -result {}} ############################################################################### runSQLiteTestEpilogue runTestEpilogue |