annotate libtests/clean.sh @ 508:23c47e118bc6

Better soap memory correctness. Pass the struct soap down through audioDB::query into Reporter::report methods. We go through the audioDB constructor and do everything on the stack. We'll eventually also need to add a pointer member within the audioDB object, so that non-local transfers of control (particularly audioDB::error) can still allocate soap-specific memory. Then use soap_malloc() not new[] for memory allocation of adbQueryResponse data structures.
author mas01cr
date Tue, 13 Jan 2009 21:37:14 +0000
parents cd63493c32a9
children
rev   line source
mas01ik@355 1 #! /bin/sh
mas01ik@355 2
mas01ik@355 3 for file in [0-9][0-9][0-9][0-9]*; do
mas01ik@355 4 if [ -d ${file} ]; then
mas01ik@355 5 echo Cleaning ${file}
mas01ik@355 6 rm -f ${file}/test*
mas01cr@373 7 (cd ${file} && make -f ../libtest.mk clean >/dev/null 2>&1)
mas01ik@355 8 if [ -f ${file}/clean.sh ]; then
mas01ik@355 9 (cd ${file} && sh ./clean.sh)
mas01ik@355 10 fi
mas01ik@355 11 fi
mas01ik@355 12 done