aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2007-04-16 15:37:00 +0000
committerDuncan Sands <baldrick@free.fr>2007-04-16 15:37:00 +0000
commit25d50d6f6ae2ab93e07173c21cab0236f3155d6c (patch)
treeb4339cc89acde31ce8da7e3df5704659ea92525c
parent43b40035baca3c0a66d3af538f8d5347fb4ceea6 (diff)
Change ne into !=.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36135 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/lib/llvm.exp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lib/llvm.exp b/test/lib/llvm.exp
index 16c1adc25e..67e6d07c70 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"
}
}