]> The Tcpdump Group git mirrors - tcpdump/blobdiff - tests/TESTrun.sh
fix more Solaris testing issues
[tcpdump] / tests / TESTrun.sh
index e1e306101feb402a1977a1d83c3a498fcb65ee4c..924e5f5e53b37b864f36cc015d8988a2d08f1ca6 100755 (executable)
@@ -4,7 +4,6 @@ mkdir -p NEW
 mkdir -p DIFF
 passed=0
 failed=0
-INDENT='    '
 cat /dev/null > failure-outputs.txt
 
 runComplexTests()
@@ -12,7 +11,6 @@ runComplexTests()
   for i in *.sh
   do
     case $i in TEST*.sh) continue;; esac
-    echo -n "$INDENT"
     if sh ./$i
     then
       passed=`expr $passed + 1`
@@ -34,7 +32,6 @@ runSimpleTests()
       '') continue;;
     esac
     [ "$only" != "" -a "$name" != "$only" ] && continue
-    echo -n "$INDENT"
     if ./TESTonce $name $input $output "$options"
     then
       passed=`expr $passed + 1`