blob: 57ef056fa69a331612919cfd9a7193e6362bccbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
$NetBSD: patch-aa,v 1.1.1.1 2007/02/20 23:02:03 xtraeme Exp $
--- tests/run_tests.sh.orig 2007-02-18 20:15:08.000000000 +0100
+++ tests/run_tests.sh 2007-02-18 20:15:18.000000000 +0100
@@ -6,7 +6,7 @@
for i in *_unittest; do
echo -n "$i... "
`./$i > /dev/null 2>&1`
- if [ $? == 0 ]; then
+ if [ $? -eq 0 ]; then
echo "PASS"
else
echo "FAILED"
|