1#!/bin/sh 2 3if test x$srcdir = x; then 4 srcdir=. 5fi 6 7if test x$top_builddir = x; then 8 top_builddir=.. 9fi 10 11tmpdir="$top_builddir/tests/tmp/" 12 13# remove test-framework 14rm -rf "$tmpdir" 15 16printf "%-40s" "cleaning up" 17 18exit 0 19