view tests/clean.sh @ 223:e2e561eef3d6 refactoring

Bump up O2_MAXFILES. It turns out that the given value is a little bit niggardly for e.g. KSA_CHARM with 1s frames. (This does mean that we waste more space for tables; the calculation of table sizes could probably be revisited.)
author mas01cr
date Wed, 05 Dec 2007 13:51:34 +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