view tests/clean.sh @ 356:2d638305269b gcc-4.3-cleanups

Branch for cleaning up all the gcc-4.3 warnings and errors. (This will also serve me to test git-svn bidirectionality; I hope that the commit messages and history will be clear, but don't rely too much on the history of this branch.)
author mas01cr
date Wed, 12 Nov 2008 12:02:49 +0000
parents 1853beeb0521
children
line wrap: on
line source
#! /bin/sh

for file in [0-9][0-9][0-9][0-9]*; do
  if [ -d ${file} ]; then
    echo Cleaning ${file}
    rm -f ${file}/test*
    if [ -f ${file}/clean.sh ]; then
      (cd ${file} && sh ./clean.sh)
    fi
  fi
done