From: Duncan Sands Date: Mon, 16 Apr 2007 15:37:00 +0000 (+0000) Subject: Change ne into !=. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=25d50d6f6ae2ab93e07173c21cab0236f3155d6c;p=oota-llvm.git Change ne into !=. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36135 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/lib/llvm.exp b/test/lib/llvm.exp index 16c1adc25ea..67e6d07c702 100644 --- a/test/lib/llvm.exp +++ b/test/lib/llvm.exp @@ -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" } }