You are viewing a plain text version of this content. The canonical link for it is here.
Posted to websh-cvs@tcl.apache.org by ro...@apache.org on 2009/06/29 17:47:26 UTC

svn commit: r789364 - /tcl/websh/trunk/src/apachetests/apachetest.tcl

Author: ronnie
Date: Mon Jun 29 15:47:24 2009
New Revision: 789364

URL: http://svn.apache.org/viewvc?rev=789364&view=rev
Log:
- fixed forced kill (exec taskkill) on Windows

Modified:
    tcl/websh/trunk/src/apachetests/apachetest.tcl

Modified: tcl/websh/trunk/src/apachetests/apachetest.tcl
URL: http://svn.apache.org/viewvc/tcl/websh/trunk/src/apachetests/apachetest.tcl?rev=789364&r1=789363&r2=789364&view=diff
==============================================================================
--- tcl/websh/trunk/src/apachetests/apachetest.tcl (original)
+++ tcl/websh/trunk/src/apachetests/apachetest.tcl Mon Jun 29 15:47:24 2009
@@ -92,7 +92,7 @@
     global tcl_platform
     if {[string equal $tcl_platform(platform) "windows"]} {
 	exec taskkill /f /pid $serverpid
-	set forcekill "taskkill /f /pid $serverpid"
+	set forcekill "exec taskkill /f /pid $serverpid"
     } else {
 	exec kill $serverpid
 	set forcekill "exec kill -9 $serverpid"



---------------------------------------------------------------------
To unsubscribe, e-mail: websh-cvs-unsubscribe@tcl.apache.org
For additional commands, e-mail: websh-cvs-help@tcl.apache.org