Change ne into !=.
authorDuncan Sands <baldrick@free.fr>
Mon, 16 Apr 2007 15:37:00 +0000 (15:37 +0000)
committerDuncan Sands <baldrick@free.fr>
Mon, 16 Apr 2007 15:37:00 +0000 (15:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36135 91177308-0d34-0410-b5e6-96231b3b80d8

test/lib/llvm.exp

index 16c1adc25ea0a6e85caf1ff3be77c914808f22ae..67e6d07c702463c2037d3357b33b920131617933 100644 (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"
         }
       }