Mercurial > hg > audiodb
view tests/clean.sh @ 550:d5ada9532a40
Implement error exits in the SOAP client when the return code is not SOAP_OK.
Corresponding fixes in the test suite, while we're at it.
author | mas01cr |
---|---|
date | Thu, 12 Feb 2009 10:44:54 +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