Skip to content

Commit 09fda3f

Browse files
committed
More logging.
1 parent 3994308 commit 09fda3f

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Provider/tests.ps1

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ function Check-ExitCode($command) {
4343
}
4444

4545
function Prepare() {
46+
echo "=== $($MyInvocation.MyCommand.Name) ==="
47+
4648
$script:startDir = $pwd
4749
$selectedConfiguration = $FirebirdConfiguration[$FirebirdSelection]
4850
$fbDownload = $selectedConfiguration.Download
@@ -67,14 +69,20 @@ function Prepare() {
6769

6870
echo "Starting Firebird"
6971
$script:firebirdProcess = Start-Process -FilePath $selectedConfiguration.Executable -ArgumentList $selectedConfiguration.Args -PassThru
72+
73+
echo "=== END ==="
7074
}
7175

7276
function Cleanup() {
77+
echo "=== $($MyInvocation.MyCommand.Name) ==="
78+
7379
cd $script:startDir
7480
$process = $script:firebirdProcess
7581
$process.Kill()
7682
$process.WaitForExit()
7783
rm -Force -Recurse $firebirdDir
84+
85+
echo "=== END ==="
7886
}
7987

8088
function Tests-All() {

0 commit comments

Comments
 (0)