Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Modify unit test infrastructure to support more options for the setupDb and cleanupDb helper procedures, namely skipping garbage collection and file deletion. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
0cd38620d45aaad9929865a2b1a5d1a9 |
User & Date: | mistachkin 2012-07-11 01:29:33.140 |
Context
2012-07-11
| ||
03:37 | Update test prologue and epilogue to make sure they unset all variables used prior to using any of them. check-in: 9189c4f757 user: mistachkin tags: trunk | |
01:32 | Initial draft of new stress test. check-in: 96ab455945 user: mistachkin tags: stress | |
01:29 | Modify unit test infrastructure to support more options for the setupDb and cleanupDb helper procedures, namely skipping garbage collection and file deletion. check-in: 0cd38620d4 user: mistachkin tags: trunk | |
2012-07-04
| ||
22:09 | Update Eagle in externals to the beta 24 release. check-in: bf0e36e840 user: mistachkin tags: trunk | |
Changes
Changes to Tests/common.eagle.
︙ | |||
591 592 593 594 595 596 597 | 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 | - + + - + | # # NOTE: Open the database connection now, placing the opaque handle value # into the variable specified by the caller. # set db [sql open -type SQLite [subst $connection]] } |
︙ | |||
638 639 640 641 642 643 644 | 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 | - + | if {!$isMemory} then { set fileName [file join [getDatabaseDirectory] [file tail $fileName]] } # # NOTE: Check if the file still exists. # |
︙ | |||
675 676 677 678 679 680 681 | 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 | - + + - + | # set code 0 } return $code } |
︙ |