Change ne into !=.

llvm-svn: 36135
This commit is contained in:
Duncan Sands 2007-04-16 15:37:00 +00:00
parent 4dcf8bff4b
commit 389439c7c5
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ proc execOneLine { test PRS outcome lineno line } {
switch "$code" {
CHILDSTATUS {
set status [lindex $::errorCode 2]
if { $status ne 0 } {
if { $status != 0 } {
set resultmsg "$test: exit($status)$errmsg"
}
}