File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,8 @@ function Check-ExitCode($command) {
4343}
4444
4545function 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
7276function 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
8088function Tests-All () {
You can’t perform that action at this time.
0 commit comments