2005-02-20 14:27:00 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
if test x$srcdir = x; then
|
|
|
|
srcdir=.
|
|
|
|
fi
|
|
|
|
|
2015-08-29 09:28:04 +00:00
|
|
|
if test x$top_builddir = x; then
|
|
|
|
top_builddir=..
|
|
|
|
fi
|
|
|
|
|
|
|
|
tmpdir="$top_builddir/tests/tmp/"
|
2005-08-29 12:08:00 +00:00
|
|
|
|
2005-08-29 13:43:46 +00:00
|
|
|
# remove test-framework
|
2015-08-29 09:28:04 +00:00
|
|
|
rm -rf "$tmpdir"
|
2005-02-20 14:27:00 +00:00
|
|
|
|
|
|
|
printf "%-40s" "cleaning up"
|
|
|
|
|
|
|
|
exit 0
|