view tests/clean.sh @ 450:0c1c8726a79b api-inversion

No more trackOffsetTable (except in sample.cpp, but that one was always a local variable. We'll get round to removing that one when we APIze sampling.) Also deconfuse things slightly by having the trackOffset variable be exactly the relevant entry from track_offsets.
author mas01cr
date Wed, 24 Dec 2008 10:57:01 +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