Change ne into !=.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36135 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Duncan Sands 2007-04-16 15:37:00 +00:00
parent 43b40035ba
commit 25d50d6f6a

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"
}
}