[llvm-commits] CVS: llvm/test/lib/llvm.exp
Duncan Sands
baldrick at free.fr
Mon Apr 16 08:37:21 PDT 2007
Changes in directory llvm/test/lib:
llvm.exp updated: 1.13 -> 1.14
---
Log message:
Change ne into !=.
---
Diffs of the changes: (+1 -1)
llvm.exp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/test/lib/llvm.exp
diff -u llvm/test/lib/llvm.exp:1.13 llvm/test/lib/llvm.exp:1.14
--- llvm/test/lib/llvm.exp:1.13 Sun Apr 15 15:43:36 2007
+++ llvm/test/lib/llvm.exp Mon Apr 16 10:37:00 2007
@@ -12,7 +12,7 @@
switch "$code" {
CHILDSTATUS {
set status [lindex $::errorCode 2]
- if { $status ne 0 } {
+ if { $status != 0 } {
set resultmsg "$test: exit($status)$errmsg"
}
}
More information about the llvm-commits
mailing list