From 25d50d6f6ae2ab93e07173c21cab0236f3155d6c Mon Sep 17 00:00:00 2001 From: Duncan Sands Date: Mon, 16 Apr 2007 15:37:00 +0000 Subject: [PATCH] Change ne into !=. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36135 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/lib/llvm.exp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" } } -- 2.34.1