# # patch "ChangeLog" # from [1716e98aad837a5efe621de77a777c60e51e45b2] # to [54247160898c309e45c76a77cd1b98145a8aafcc] # # patch "testsuite.at" # from [6b0d1c1e97cbb6def87352d063db38857a432f48] # to [341cd75fc0ab1bbe6ebc96c826840285edbe7020] # --- ChangeLog +++ ChangeLog @@ -1,3 +1,9 @@ +2005-05-13 Matthew Gregan + + * testsuite.at: Fix typo error in Win32 kill logic that was + causing the testsuites to hang on Win32 machines that don't have + pskill installed. + 2005-05-12 Matthew Gregan * file_io.cc (write_data_impl): Use portable boost::filesystem --- testsuite.at +++ testsuite.at @@ -364,7 +364,7 @@ if test $pskill && test -x $pskill; then $pskill $mt_pid 2>/dev/null else - ps | awk -- '{p=$NF;a=1;if(p=="COMMAND")next;pp=split(p,ps,"/");if(ps[[pp]]=="monotone")system("kill -KILL" $a);}' + ps | awk -- '{p=$NF;a=1;if(p=="COMMAND")next;pp=split(p,ps,"/");if(ps[[pp]]=="monotone")system("kill -KILL " $a);}' fi else kill -KILL $mt_pid 2>/dev/null