summaryrefslogtreecommitdiff
path: root/cpp/src/tests/run_test.ps1
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2009-10-05 16:00:59 +0000
committerStephen D. Huston <shuston@apache.org>2009-10-05 16:00:59 +0000
commitae074a2954fe5bb98a3d029e82690fa569470414 (patch)
tree1ef15802a1860ae82fad73bbbd7762c6dc1f843e /cpp/src/tests/run_test.ps1
parent4f80172fc8a66475045df2299b45c4eb6d46a1b2 (diff)
downloadqpid-python-ae074a2954fe5bb98a3d029e82690fa569470414.tar.gz
Correct some powershell problems for Windows
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@821887 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/run_test.ps1')
-rw-r--r--cpp/src/tests/run_test.ps13
1 files changed, 1 insertions, 2 deletions
diff --git a/cpp/src/tests/run_test.ps1 b/cpp/src/tests/run_test.ps1
index ebbef07f1d..551368bc9b 100644
--- a/cpp/src/tests/run_test.ps1
+++ b/cpp/src/tests/run_test.ps1
@@ -52,7 +52,6 @@ if (Test-Path qpidd.port) {
set-item -path env:QPID_PORT -value (get-content -path qpidd.port -totalcount 1)
}
-#$p = new-object System.Diagnostics.Process
$si = new-object System.Diagnostics.ProcessStartInfo
$si.WorkingDirectory = $pwd
$si.UseShellExecute = $true
@@ -67,6 +66,6 @@ else {
$si.Arguments = $args[1..$args.length-1]
}
}
-$p = [diagnostics.process]::Start($si)
+$p = [System.Diagnostics.Process]::Start($si)
$p.WaitForExit()
exit $?